Code coverage report for cjs/operator/expand.js

Statements: 100% (9 / 9)      Branches: 62.5% (5 / 8)      Functions: 100% (1 / 1)      Lines: 100% (7 / 7)      Ignored: none     

All files » cjs/operator/ » expand.js
1 2 3 4 5 6 7 8 91 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