summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_baseForOwn.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_baseForOwn.js')
-rw-r--r--includes/external/school/node_modules/lodash/_baseForOwn.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/includes/external/school/node_modules/lodash/_baseForOwn.js b/includes/external/school/node_modules/lodash/_baseForOwn.js
deleted file mode 100644
index 503d523..0000000
--- a/includes/external/school/node_modules/lodash/_baseForOwn.js
+++ /dev/null
@@ -1,16 +0,0 @@
-var baseFor = require('./_baseFor'),
- keys = require('./keys');
-
-/**
- * The base implementation of `_.forOwn` without support for iteratee shorthands.
- *
- * @private
- * @param {Object} object The object to iterate over.
- * @param {Function} iteratee The function invoked per iteration.
- * @returns {Object} Returns `object`.
- */
-function baseForOwn(object, iteratee) {
- return object && baseFor(object, iteratee, keys);
-}
-
-module.exports = baseForOwn;