frontend/.pnpm-store/v3/files/29/23a78803dc6dd4cab04abb76cbdd7def5e1b511300d9df69b8f5f4bf0f5acef40ba8d6605dd6a3a9956e32faec900a4f8f9f45c1e95a91b11beb25f1197ad7

7 lines
313 B
Plaintext

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