source: trip-planner-front/node_modules/rxjs/internal/operators/zip.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 458 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var zip_1 = require("../observable/zip");
4function zip() {
5 var observables = [];
6 for (var _i = 0; _i < arguments.length; _i++) {
7 observables[_i] = arguments[_i];
8 }
9 return function zipOperatorFunction(source) {
10 return source.lift.call(zip_1.zip.apply(void 0, [source].concat(observables)));
11 };
12}
13exports.zip = zip;
14//# sourceMappingURL=zip.js.map
Note: See TracBrowser for help on using the repository browser.