mergeAll.js 251 B

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