UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

5 lines 253 B
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