wishthis/node_modules/rxjs/dist/esm/internal/operators/mergeAll.js

6 lines
215 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
import { mergeMap } from './mergeMap';
import { identity } from '../util/identity';
2022-06-08 10:36:39 +00:00
export function mergeAll(concurrent = Infinity) {
2022-01-21 08:28:41 +00:00
return mergeMap(identity, concurrent);
}
//# sourceMappingURL=mergeAll.js.map