summaryrefslogtreecommitdiffstats
path: root/node_modules/mongoose/lib/helpers/each.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/mongoose/lib/helpers/each.js')
-rw-r--r--node_modules/mongoose/lib/helpers/each.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/node_modules/mongoose/lib/helpers/each.js b/node_modules/mongoose/lib/helpers/each.js
deleted file mode 100644
index fe70069..0000000
--- a/node_modules/mongoose/lib/helpers/each.js
+++ /dev/null
@@ -1,25 +0,0 @@
-'use strict';
-
-module.exports = function each(arr, cb, done) {
- if (arr.length === 0) {
- return done();
- }
-
- let remaining = arr.length;
- let err = null;
- for (const v of arr) {
- cb(v, function(_err) {
- if (err != null) {
- return;
- }
- if (_err != null) {
- err = _err;
- return done(err);
- }
-
- if (--remaining <= 0) {
- return done();
- }
- });
- }
-}; \ No newline at end of file