Name
Last commit
Last update
..
index.js work yui
package.json work yui
readme.md work yui

set-immediate-shim Build Status

Simple setImmediate shim

Install

$ npm install --save set-immediate-shim

Usage

var setImmediateShim = require('set-immediate-shim');

setImmediateShim(function () {
	console.log('2');
});

console.log('1');

//=> 1
//=> 2

License

MIT :copyright: Sindre Sorhus