aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/baseForOwnRight.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/baseForOwnRight.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/baseForOwnRight.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/baseForOwnRight.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/baseForOwnRight.js
deleted file mode 100644
index bb916bc7..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/baseForOwnRight.js
+++ /dev/null
@@ -1,17 +0,0 @@
-var baseForRight = require('./baseForRight'),
- keys = require('../object/keys');
-
-/**
- * The base implementation of `_.forOwnRight` without support for callback
- * shorthands and `this` binding.
- *
- * @private
- * @param {Object} object The object to iterate over.
- * @param {Function} iteratee The function invoked per iteration.
- * @returns {Object} Returns `object`.
- */
-function baseForOwnRight(object, iteratee) {
- return baseForRight(object, iteratee, keys);
-}
-
-module.exports = baseForOwnRight;