📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 17:04:42
📂
/ (Root)
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
asynckit
/
lib
📍 /usr/lib/node_modules/npm/node_modules/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