Cheap way to introduce short async delay.
$ npm install --save zaraz
const zaraz = require('zaraz');
function sum(a, b) {
console.log(a + b);
}
zaraz(sum, 5, 7); // will display 13 after a short delay
zaraz(sum, 10, 10); // will displey 20 after it displays 13
schedule fn
to be called in near future - args
will be passed to fn
minumum delay before task is processed - 10 millis by default
maximum time spent processing taks queue before yielding - 100 millis by default
maximum number of task processed before yielding - 1000 by default
MIT © Damian Krzeminski