blob: 64727218e9ce5dbb4b39187652a2b39969fb86c7 [file] [log] [blame]
import { FindValueOperator } from '../operators/find';
export function findIndex(predicate, thisArg) {
return (source) => source.lift(new FindValueOperator(predicate, source, true, thisArg));
}
//# sourceMappingURL=findIndex.js.map