X7ROOT File Manager
Current Path:
/lib/node_modules/npm/node_modules/asynckit/lib
lib
/
node_modules
/
npm
/
node_modules
/
asynckit
/
lib
/
ðŸ“
..
📄
abort.js
(497 B)
📄
async.js
(599 B)
📄
defer.js
(441 B)
📄
iterate.js
(1.75 KB)
📄
readable_asynckit.js
(1.57 KB)
📄
readable_parallel.js
(673 B)
📄
readable_serial.js
(655 B)
📄
readable_serial_ordered.js
(941 B)
📄
state.js
(941 B)
📄
streamify.js
(2.89 KB)
📄
terminator.js
(533 B)
Editing: defer.js
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); } }
Upload File
Create Folder