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

mergeAll.js 231B

123456
  1. import { mergeMap } from './mergeMap';
  2. import { identity } from '../util/identity';
  3. export function mergeAll(concurrent = Number.POSITIVE_INFINITY) {
  4. return mergeMap(identity, concurrent);
  5. }
  6. //# sourceMappingURL=mergeAll.js.map