expand.js 465 B

12345678910
  1. import { operate } from '../util/lift';
  2. import { mergeInternals } from './mergeInternals';
  3. export function expand(project, concurrent, scheduler) {
  4. if (concurrent === void 0) { concurrent = Infinity; }
  5. concurrent = (concurrent || 0) < 1 ? Infinity : concurrent;
  6. return operate(function (source, subscriber) {
  7. return mergeInternals(source, subscriber, project, concurrent, undefined, true, scheduler);
  8. });
  9. }
  10. //# sourceMappingURL=expand.js.map