expand.js 422 B

12345678
  1. import { expand as higherOrder } from 'rxjs/operators';
  2. export function expand(project, concurrent, scheduler) {
  3. if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; }
  4. if (scheduler === void 0) { scheduler = undefined; }
  5. concurrent = (concurrent || 0) < 1 ? Number.POSITIVE_INFINITY : concurrent;
  6. return higherOrder(project, concurrent, scheduler)(this);
  7. }
  8. //# sourceMappingURL=expand.js.map