findIndex.js 196 B

12345
  1. import { findIndex as higherOrder } from 'rxjs/operators';
  2. export function findIndex(predicate, thisArg) {
  3. return higherOrder(predicate, thisArg)(this);
  4. }
  5. //# sourceMappingURL=findIndex.js.map