the execution promise
import async from "apprt-core/async";
// a sum function
let sum = (x,y)=> x + y;
// execute 3+4, 200msec later
async(sum,200,3,4)
// result === 7
.then(result => console.log(result));
Same as the first overload, but without a delay.
Generated using TypeDoc
Runs given callback async.