Initial commit

This commit is contained in:
jiapengyu
2026-07-27 13:37:48 +08:00
commit ecba71e2a5
39123 changed files with 5989154 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
if (typeof process === 'object' && process.nextTick && !false) {
exports = process.nextTick;
} else if (typeof setImmediate === 'function') {
exports = function(cb) {
setImmediate(ensureCallable(cb));
};
} else {
exports = function(cb) {
setTimeout(ensureCallable(cb), 0);
};
}
function ensureCallable(fn) {
if (typeof fn !== 'function')
throw new TypeError(fn + ' is not a function');
return fn;
}
module.exports = exports;