find.js 181 B

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