wishthis/node_modules/rxjs/dist/esm/internal/observable/concat.js
2022-06-08 12:36:39 +02:00

7 lines
No EOL
254 B
JavaScript

import { concatAll } from '../operators/concatAll';
import { popScheduler } from '../util/args';
import { from } from './from';
export function concat(...args) {
return concatAll()(from(args, popScheduler(args)));
}
//# sourceMappingURL=concat.js.map