15eabe3057cce19923a9adccd08afdab4bf391c9b3fda6d0e61ab0532feeab2dbc02231618487f4c7688db5f910e2f562b1c183894a1833d48d004da8bbe49 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