hugoWebsite/node_modules/rxjs/dist/esm5/internal/operators/findIndex.js
Jeremy Nusser 0ab675d92b Initial commit... 🎉🎉🎉
2022-10-28 17:20:35 -05:00

6 lines
No EOL
225 B
JavaScript

import { operate } from '../util/lift';
import { createFind } from './find';
export function findIndex(predicate, thisArg) {
return operate(createFind(predicate, thisArg, 'index'));
}
//# sourceMappingURL=findIndex.js.map