Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

6 lines
200 B
JavaScript

import { of } from './of';
import { concatAll } from '../operators/concatAll';
export function concat(...observables) {
return concatAll()(of(...observables));
}
//# sourceMappingURL=concat.js.map