PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
asynckit
/
lib
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); }); } }; }
[+]
..
[-] 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]