expand.js 330 B

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