Files
codeql-action/node_modules/queue-tick/process-next-tick.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
160 B
JavaScript
Raw Normal View History

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