aboutsummaryrefslogtreecommitdiff
path: root/node_modules/archiver/node_modules/lodash/_baseEach.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/archiver/node_modules/lodash/_baseEach.js')
-rw-r--r--node_modules/archiver/node_modules/lodash/_baseEach.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/node_modules/archiver/node_modules/lodash/_baseEach.js b/node_modules/archiver/node_modules/lodash/_baseEach.js
deleted file mode 100644
index 512c06768..000000000
--- a/node_modules/archiver/node_modules/lodash/_baseEach.js
+++ /dev/null
@@ -1,14 +0,0 @@
-var baseForOwn = require('./_baseForOwn'),
- createBaseEach = require('./_createBaseEach');
-
-/**
- * The base implementation of `_.forEach` without support for iteratee shorthands.
- *
- * @private
- * @param {Array|Object} collection The collection to iterate over.
- * @param {Function} iteratee The function invoked per iteration.
- * @returns {Array|Object} Returns `collection`.
- */
-var baseEach = createBaseEach(baseForOwn);
-
-module.exports = baseEach;