Last change
on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
391 bytes
|
Line | |
---|
1 | /** PURE_IMPORTS_START _of,_operators_concatAll PURE_IMPORTS_END */
|
---|
2 | import { of } from './of';
|
---|
3 | import { concatAll } from '../operators/concatAll';
|
---|
4 | export function concat() {
|
---|
5 | var observables = [];
|
---|
6 | for (var _i = 0; _i < arguments.length; _i++) {
|
---|
7 | observables[_i] = arguments[_i];
|
---|
8 | }
|
---|
9 | return concatAll()(of.apply(void 0, observables));
|
---|
10 | }
|
---|
11 | //# sourceMappingURL=concat.js.map
|
---|
Note:
See
TracBrowser
for help on using the repository browser.