mergeMap.js 285 B

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