Delete node_modules directory

This commit is contained in:
2021-04-11 11:54:19 +02:00
committed by GitHub
parent 3017d193fd
commit 94857d1cb1
332 changed files with 0 additions and 60040 deletions

34
node_modules/asynckit/lib/async.js generated vendored
View File

@@ -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);
});
}
};
}