6da109676872ac4982a86bffde39d39dbaa7e7007968a7600ef1b826061087670597ad71c5f9b5b9634cbfc201e7a701697e2bc5767bffeaeeb4ae1288a41b 235 B

12345
  1. import { FindValueOperator } from '../operators/find';
  2. export function findIndex(predicate, thisArg) {
  3. return (source) => source.lift(new FindValueOperator(predicate, source, true, thisArg));
  4. }
  5. //# sourceMappingURL=findIndex.js.map