diff options
Diffstat (limited to 'includes/external/signal/node_modules/asynckit/lib/async.js')
-rw-r--r-- | includes/external/signal/node_modules/asynckit/lib/async.js | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/includes/external/signal/node_modules/asynckit/lib/async.js b/includes/external/signal/node_modules/asynckit/lib/async.js deleted file mode 100644 index 7f1288a..0000000 --- a/includes/external/signal/node_modules/asynckit/lib/async.js +++ /dev/null @@ -1,34 +0,0 @@ -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); - }); - } - }; -} |