Your IP : 216.73.216.209


Current Path : /usr/share/nodejs/set-immediate-shim/
Upload File :
Current File : //usr/share/nodejs/set-immediate-shim/index.js

'use strict';
module.exports = typeof setImmediate === 'function' ? setImmediate : (...args) => {
	args.splice(1, 0, 0);
	setTimeout(...args);
};