1.0.1 • Published 10 years ago

setimmediate.js v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

setimmediate.js

A really stupid, lightweight setImmediate polyfill for browsers and node 0.8. Supports the browser as well as node.

For a most robust polyfill, you should probably use setImmediate. For most cases, the underlying "next tick" mechanism is irrelevant.

Usage

require('setimmediate.js');

setImmediate(function () {
  console.log('something');
});

Nothing is exported! A global setImmediate function is added!