Files
geo/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js
2026-02-04 00:11:19 +05:00

7 lines
262 B
JavaScript
Executable File

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