74053d55e1b557da7f68e4df9ddecb5de515df6a94c29b36d166cd046d88a7f08902f4c1084af038d3c3a3c9463fd6fe66433fdf4a168417bccf74577c3a93 413 B

1234567891011
  1. import { operate } from '../util/lift';
  2. import { concatAll } from './concatAll';
  3. import { popScheduler } from '../util/args';
  4. import { from } from '../observable/from';
  5. export function concat(...args) {
  6. const scheduler = popScheduler(args);
  7. return operate((source, subscriber) => {
  8. concatAll()(from([source, ...args], scheduler)).subscribe(subscriber);
  9. });
  10. }
  11. //# sourceMappingURL=concat.js.map