Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

findIndex.js 235B

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