mergeAll.js 204 B

12345
  1. import { mergeAll as higherOrder } from 'rxjs/operators';
  2. export function mergeAll(concurrent = Number.POSITIVE_INFINITY) {
  3. return higherOrder(concurrent)(this);
  4. }
  5. //# sourceMappingURL=mergeAll.js.map