A shim for the setImmediate API
$ gnpm install set-immediate
A simple and lightweight shim for the setImmediate W3C Draft API, for use in any browsers and NodeJS.
You can include the script any way you want in a browser, in NodeJS environment, it is suggested that you do so by installing set-immediate
from npm, and then including it using require('set-immediate')
, preferably before any other dependencies, so that they can use it too (it is injected on the global object for browser < - > node compatibility).
setImmediate(function (foo, bar) {
console.log(foo, bar);
}, ['foo', 'bar']);
var id = setImmediate(function () {});
clearImmediate(id);
Copyright 2013 - present © cnpmjs.org | Home |