0.1.1 • Published 11 years ago

set-immediate v0.1.1

Weekly downloads
19,213
License
-
Repository
-
Last release
11 years ago

setImmediate

A simple and lightweight shim for the setImmediate W3C Draft API, for use in any browsers and NodeJS.

Example usage

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);