summaryrefslogtreecommitdiffstats
path: root/node_modules/async-each/index.js
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/async-each/index.js
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/async-each/index.js')
-rw-r--r--node_modules/async-each/index.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/node_modules/async-each/index.js b/node_modules/async-each/index.js
deleted file mode 100644
index 277217d..0000000
--- a/node_modules/async-each/index.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// async-each MIT license (by Paul Miller from https://paulmillr.com).
-(function(globals) {
- 'use strict';
- var each = function(items, next, callback) {
- if (!Array.isArray(items)) throw new TypeError('each() expects array as first argument');
- if (typeof next !== 'function') throw new TypeError('each() expects function as second argument');
- if (typeof callback !== 'function') callback = Function.prototype; // no-op
-
- if (items.length === 0) return callback(undefined, items);
-
- var transformed = new Array(items.length);
- var count = 0;
- var returned = false;
-
- items.forEach(function(item, index) {
- next(item, function(error, transformedItem) {
- if (returned) return;
- if (error) {
- returned = true;
- return callback(error);
- }
- transformed[index] = transformedItem;
- count += 1;
- if (count === items.length) return callback(undefined, transformed);
- });
- });
- };
-
- if (typeof define !== 'undefined' && define.amd) {
- define([], function() {
- return each;
- }); // RequireJS
- } else if (typeof module !== 'undefined' && module.exports) {
- module.exports = each; // CommonJS
- } else {
- globals.asyncEach = each; // <script>
- }
-})(this);