findIndex.js 225 B

123456
  1. import { operate } from '../util/lift';
  2. import { createFind } from './find';
  3. export function findIndex(predicate, thisArg) {
  4. return operate(createFind(predicate, thisArg, 'index'));
  5. }
  6. //# sourceMappingURL=findIndex.js.map