mergeAll.js 262 B

1234567
  1. import { mergeMap } from './mergeMap';
  2. import { identity } from '../util/identity';
  3. export function mergeAll(concurrent) {
  4. if (concurrent === void 0) { concurrent = Infinity; }
  5. return mergeMap(identity, concurrent);
  6. }
  7. //# sourceMappingURL=mergeAll.js.map