backoffice/node_modules/set-immediate-shim
root ab9f8bb658 first commit 2020-02-06 10:09:39 +00:00
..
index.js first commit 2020-02-06 10:09:39 +00:00
package.json first commit 2020-02-06 10:09:39 +00:00
readme.md first commit 2020-02-06 10:09:39 +00:00

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