Graduation / ui /node_modules /queue-tick /process-next-tick.js
DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
160 Bytes
module.exports = (typeof process !== 'undefined' && typeof process.nextTick === 'function')
? process.nextTick.bind(process)
: require('./queue-microtask')