Files
fvtt-hamalron/node_modules/queue-tick/process-next-tick.js
T
2025-12-25 23:08:06 +01:00

4 lines
160 B
JavaScript

module.exports = (typeof process !== 'undefined' && typeof process.nextTick === 'function')
? process.nextTick.bind(process)
: require('./queue-microtask')