lucaconte 7cc26e831d presentations vor 6 Jahren
..
index.js 7cc26e831d presentations vor 6 Jahren
package.json 7cc26e831d presentations vor 6 Jahren
readme.md 7cc26e831d presentations vor 6 Jahren

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