summaryrefslogtreecommitdiff
path: root/fetcher/node_modules/asynckit/parallel.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-05-08 13:18:04 +0200
committerMinteck <contact@minteck.org>2022-05-08 13:18:04 +0200
commit16da8f48c7328c334a5c0d863078fd00257ae6b4 (patch)
tree4ab80e4106c4c7a61e5a7caf6102d612b8dd985d /fetcher/node_modules/asynckit/parallel.js
downloaddownloadcenter-16da8f48c7328c334a5c0d863078fd00257ae6b4.tar.gz
downloadcenter-16da8f48c7328c334a5c0d863078fd00257ae6b4.tar.bz2
downloadcenter-16da8f48c7328c334a5c0d863078fd00257ae6b4.zip
Initial commit
Diffstat (limited to 'fetcher/node_modules/asynckit/parallel.js')
-rw-r--r--fetcher/node_modules/asynckit/parallel.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/fetcher/node_modules/asynckit/parallel.js b/fetcher/node_modules/asynckit/parallel.js
new file mode 100644
index 0000000..3c50344
--- /dev/null
+++ b/fetcher/node_modules/asynckit/parallel.js
@@ -0,0 +1,43 @@
+var iterate = require('./lib/iterate.js')
+ , initState = require('./lib/state.js')
+ , terminator = require('./lib/terminator.js')
+ ;
+
+// Public API
+module.exports = parallel;
+
+/**
+ * Runs iterator over provided array elements in parallel
+ *
+ * @param {array|object} list - array or object (named list) to iterate over
+ * @param {function} iterator - iterator to run
+ * @param {function} callback - invoked when all elements processed
+ * @returns {function} - jobs terminator
+ */
+function parallel(list, iterator, callback)
+{
+ var state = initState(list);
+
+ while (state.index < (state['keyedList'] || list).length)
+ {
+ iterate(list, iterator, state, function(error, result)
+ {
+ if (error)
+ {
+ callback(error, result);
+ return;
+ }
+
+ // looks like it's the last one
+ if (Object.keys(state.jobs).length === 0)
+ {
+ callback(null, state.results);
+ return;
+ }
+ });
+
+ state.index++;
+ }
+
+ return terminator.bind(state, callback);
+}