Code coverage report for RxJS/dist/cjs/operators/zipAll.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (6 / 6)      Ignored: none     

All files » RxJS/dist/cjs/operators/ » zipAll.js
1 2 3 4 5 6 7 8 9 10 11 12    1 1   1   1 5     1
'use strict';
 
exports.__esModule = true;
exports['default'] = zipAll;
 
var _zipSupport = require('./zip-support');
 
function zipAll(project) {
    return this.lift(new _zipSupport.ZipOperator(project));
}
 
module.exports = exports['default'];