Skip to content

component/setimmediate.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!