mergeScan.js 292 B

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