23a78803dc6dd4cab04abb76cbdd7def5e1b511300d9df69b8f5f4bf0f5acef40ba8d6605dd6a3a9956e32faec900a4f8f9f45c1e95a91b11beb25f1197ad7 313 B

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