1 2 3 4 5 6 7 8 9 | 1 1 14 14 14 14 1 | var expand_support_1 = require('./expand-support'); function expand(project, concurrent, scheduler) { if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; } Eif (scheduler === void 0) { scheduler = undefined; } concurrent = (concurrent || 0) < 1 ? Number.POSITIVE_INFINITY : concurrent; return this.lift(new expand_support_1.ExpandOperator(project, concurrent, scheduler)); } exports.expand = expand; //# sourceMappingURL=expand.js.map |