unboundedpress/node_modules/set-immediate-shim
Michael Winter 555e2c196e initial commit
..
index.js initial commit
package.json initial commit
readme.md initial commit

readme.md

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 © Sindre Sorhus