summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/collection/findLast.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/collection/findLast.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/collection/findLast.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/collection/findLast.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/collection/findLast.js
deleted file mode 100644
index 75dbadca..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/collection/findLast.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var baseEachRight = require('../internal/baseEachRight'),
- createFind = require('../internal/createFind');
-
-/**
- * This method is like `_.find` except that it iterates over elements of
- * `collection` from right to left.
- *
- * @static
- * @memberOf _
- * @category Collection
- * @param {Array|Object|string} collection The collection to search.
- * @param {Function|Object|string} [predicate=_.identity] The function invoked
- * per iteration.
- * @param {*} [thisArg] The `this` binding of `predicate`.
- * @returns {*} Returns the matched element, else `undefined`.
- * @example
- *
- * _.findLast([1, 2, 3, 4], function(n) {
- * return n % 2 == 1;
- * });
- * // => 3
- */
-var findLast = createFind(baseEachRight, true);
-
-module.exports = findLast;