| Current Path : /usr/share/nodejs/set-immediate-shim/ |
| 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);
};