UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 297 B
import { IterableX } from '../../iterable/iterablex'; import { scan } from '../../iterable/operators/scan'; /** * @ignore */ export function scanProto(accumulator, ...seed) { return scan(accumulator, ...seed)(this); } IterableX.prototype.scan = scanProto; //# sourceMappingURL=scan.mjs.map