All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.modules._createPredicateIndexFinder.js Maven / Gradle / Ivy

The newest version!
import cb from './_cb.js';
import getLength from './_getLength.js';

// Internal function to generate `_.findIndex` and `_.findLastIndex`.
export default function createPredicateIndexFinder(dir) {
  return function(array, predicate, context) {
    predicate = cb(predicate, context);
    var length = getLength(array);
    var index = dir > 0 ? 0 : length - 1;
    for (; index >= 0 && index < length; index += dir) {
      if (predicate(array[index], index, array)) return index;
    }
    return -1;
  };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy