mergeMapTo.js 291 B

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