mirror of https://github.com/jkjoy/sunpeiwen.git
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
|
'use strict';
|
||
|
|
||
|
exports.setImmediate = typeof setImmediate === 'function'
|
||
|
? setImmediate
|
||
|
: function(fn){
|
||
|
process.nextTick(fn.bind.apply(fn, arguments));
|
||
|
};
|