Code coverage report for cjs/operators/zip.js

Statements: 100% (12 / 12)      Branches: 75% (3 / 4)      Functions: 100% (2 / 2)      Lines: 100% (11 / 11)      Ignored: none     

All files » cjs/operators/ » zip.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23    1 1   1   1   1   1 19 19     19 19       1  
'use strict';
 
exports.__esModule = true;
exports['default'] = zipProto;
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
 
var _zipStatic = require('./zip-static');
 
var _zipStatic2 = _interopRequireDefault(_zipStatic);
 
function zipProto() {
    for (var _len = arguments.length, observables = Array(_len), _key = 0; _key < _len; _key++) {
        observables[_key] = arguments[_key];
    }
 
    observables.unshift(this);
    return _zipStatic2['default'].apply(this, observables);
}
 
//# sourceMappingURL=zip.js.map
module.exports = exports['default'];
//# sourceMappingURL=zip.js.map