Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- import { isScheduler } from '../util/isScheduler';
- import { of } from './of';
- import { from } from './from';
- import { concatAll } from '../operators/concatAll';
- export function concat(...observables) {
- if (observables.length === 1 || (observables.length === 2 && isScheduler(observables[1]))) {
- return from(observables[0]);
- }
- return concatAll()(of(...observables));
- }
- //# sourceMappingURL=concat.js.map
|