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

7 lines
262 B
JavaScript
Raw Normal View History

2022-06-08 10:36:39 +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