wishthis/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js
2022-06-08 12:36:39 +02:00

7 lines
No EOL
262 B
JavaScript

import { mergeMap } from './mergeMap';
import { identity } from '../util/identity';
export function mergeAll(concurrent) {
if (concurrent === void 0) { concurrent = Infinity; }
return mergeMap(identity, concurrent);
}
//# sourceMappingURL=mergeAll.js.map