concat.js 200 B

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