🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 05:04:13 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs11
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
asynckit
/
lib
📍 /opt/alt/alt-nodejs11/root/usr/lib/node_modules/npm/node_modules.bundled/asynckit/lib
🔄 Refresh
✏️
Editing: async.js
Read Only
var defer = require('./defer.js'); // API module.exports = async; /** * Runs provided callback asynchronously * even if callback itself is not * * @param {function} callback - callback to invoke * @returns {function} - augmented callback */ function async(callback) { var isAsync = false; // check if async happened defer(function() { isAsync = true; }); return function async_callback(err, result) { if (isAsync) { callback(err, result); } else { defer(function nextTick_callback() { callback(err, result); }); } }; }
💾 Save Changes
❌ Cancel