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 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