frontend/.pnpm-store/v3/files/58/6da109676872ac4982a86bffde39d39dbaa7e7007968a7600ef1b826061087670597ad71c5f9b5b9634cbfc201e7a701697e2bc5767bffeaeeb4ae1288a41b

5 lines
235 B
Plaintext

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