Files
evento/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js
2026-03-18 14:55:56 -03:00

7 lines
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