MyRepo-Ums/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js

7 lines
262 B
JavaScript
Raw Normal View History

2024-01-19 10:09:11 +00:00
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