partition.js 196 B

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