Files
fvtt-ftl-nomad/node_modules/queue-tick/process-next-tick.js
2025-02-13 23:19:32 +01:00

4 lines
160 B
JavaScript

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