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

7 lines
262 B
JavaScript
Raw Normal View History

2022-10-29 00:20:35 +02: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