Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mergeAll.js 359B

12345678910
  1. /** PURE_IMPORTS_START _mergeMap,_util_identity PURE_IMPORTS_END */
  2. import { mergeMap } from './mergeMap';
  3. import { identity } from '../util/identity';
  4. export function mergeAll(concurrent) {
  5. if (concurrent === void 0) {
  6. concurrent = Number.POSITIVE_INFINITY;
  7. }
  8. return mergeMap(identity, concurrent);
  9. }
  10. //# sourceMappingURL=mergeAll.js.map