Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
451 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | var concat_1 = require("../observable/concat");
|
---|
4 | function concat() {
|
---|
5 | var observables = [];
|
---|
6 | for (var _i = 0; _i < arguments.length; _i++) {
|
---|
7 | observables[_i] = arguments[_i];
|
---|
8 | }
|
---|
9 | return function (source) { return source.lift.call(concat_1.concat.apply(void 0, [source].concat(observables))); };
|
---|
10 | }
|
---|
11 | exports.concat = concat;
|
---|
12 | //# sourceMappingURL=concat.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.