summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/internal/baseFindIndex.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/internal/baseFindIndex.js')
-rw-r--r--tools/eslint/node_modules/lodash/internal/baseFindIndex.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/eslint/node_modules/lodash/internal/baseFindIndex.js b/tools/eslint/node_modules/lodash/internal/baseFindIndex.js
deleted file mode 100644
index 7d4b502485..0000000000
--- a/tools/eslint/node_modules/lodash/internal/baseFindIndex.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * The base implementation of `_.findIndex` and `_.findLastIndex` without
- * support for callback shorthands and `this` binding.
- *
- * @private
- * @param {Array} array The array to search.
- * @param {Function} predicate The function invoked per iteration.
- * @param {boolean} [fromRight] Specify iterating from right to left.
- * @returns {number} Returns the index of the matched value, else `-1`.
- */
-function baseFindIndex(array, predicate, fromRight) {
- var length = array.length,
- index = fromRight ? length : -1;
-
- while ((fromRight ? index-- : ++index < length)) {
- if (predicate(array[index], index, array)) {
- return index;
- }
- }
- return -1;
-}
-
-module.exports = baseFindIndex;