mergeScan.js 245 B

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