PATH:
usr
/
local
/
n
/
versions
/
node
/
12.14.1
/
lib
/
node_modules
/
npm
/
node_modules
/
asynckit
/
lib
module.exports = defer; /** * Runs provided function on next iteration of the event loop * * @param {function} fn - function to run */ function defer(fn) { var nextTick = typeof setImmediate == 'function' ? setImmediate : ( typeof process == 'object' && typeof process.nextTick == 'function' ? process.nextTick : null ); if (nextTick) { nextTick(fn); } else { setTimeout(fn, 0); } }
[+]
..
[-] defer.js
[edit]
[-] readable_parallel.js
[edit]
[-] readable_serial.js
[edit]
[-] terminator.js
[edit]
[-] readable_serial_ordered.js
[edit]
[-] streamify.js
[edit]
[-] iterate.js
[edit]
[-] async.js
[edit]
[-] state.js
[edit]
[-] abort.js
[edit]
[-] readable_asynckit.js
[edit]