zz 65c8a28f48 项目初始化 2 gün önce
..
index.js 65c8a28f48 项目初始化 2 gün önce
package.json 65c8a28f48 项目初始化 2 gün önce
readme.md 65c8a28f48 项目初始化 2 gün önce

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