1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 1 1 1 5 5 1 | 'use strict'; exports.__esModule = true; exports['default'] = expand; var _expandSupport = require('./expand-support'); function expand(project) { var concurrent = arguments.length <= 1 || arguments[1] === undefined ? Number.POSITIVE_INFINITY : arguments[1]; return this.lift(new _expandSupport.ExpandOperator(project, concurrent)); } module.exports = exports['default']; |