frontend/.pnpm-store/v3/files/f5/f1c097908d03f27d63ea00812239f4b60e67ddf97435aae4c23f7e4eb674c9e792f7cdb7c00878d4fb79b85c7ef5b7ae43ba44771c2704078899bdb940d5b5

6 lines
200 B
Plaintext

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