process-next-tick.js 160 B

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