hexo/node_modules/utility/polyfill.js

8 lines
165 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'use strict';
exports.setImmediate = typeof setImmediate === 'function'
? setImmediate
: function(fn){
process.nextTick(fn.bind.apply(fn, arguments));
};