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.

concat.js 200B

123456
  1. import { of } from './of';
  2. import { concatAll } from '../operators/concatAll';
  3. export function concat(...observables) {
  4. return concatAll()(of(...observables));
  5. }
  6. //# sourceMappingURL=concat.js.map