Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

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