every.js 184 B

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