expand.js 608 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.expand = void 0;
  4. var lift_1 = require("../util/lift");
  5. var mergeInternals_1 = require("./mergeInternals");
  6. function expand(project, concurrent, scheduler) {
  7. if (concurrent === void 0) { concurrent = Infinity; }
  8. concurrent = (concurrent || 0) < 1 ? Infinity : concurrent;
  9. return lift_1.operate(function (source, subscriber) {
  10. return mergeInternals_1.mergeInternals(source, subscriber, project, concurrent, undefined, true, scheduler);
  11. });
  12. }
  13. exports.expand = expand;
  14. //# sourceMappingURL=expand.js.map