source: imaps-frontend/node_modules/lodash-es/_baseFindIndex.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 764 bytes
Line 
1/**
2 * The base implementation of `_.findIndex` and `_.findLastIndex` without
3 * support for iteratee shorthands.
4 *
5 * @private
6 * @param {Array} array The array to inspect.
7 * @param {Function} predicate The function invoked per iteration.
8 * @param {number} fromIndex The index to search from.
9 * @param {boolean} [fromRight] Specify iterating from right to left.
10 * @returns {number} Returns the index of the matched value, else `-1`.
11 */
12function baseFindIndex(array, predicate, fromIndex, fromRight) {
13 var length = array.length,
14 index = fromIndex + (fromRight ? 1 : -1);
15
16 while ((fromRight ? index-- : ++index < length)) {
17 if (predicate(array[index], index, array)) {
18 return index;
19 }
20 }
21 return -1;
22}
23
24export default baseFindIndex;
Note: See TracBrowser for help on using the repository browser.