source: trip-planner-front/node_modules/rxjs/internal/observable/concat.js@ e29cc2e

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

initial commit

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