UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

8 lines 277 B
import { scan as higherOrderScan } from 'rxjs/operators'; export function scan(accumulator, seed) { if (arguments.length >= 2) { return higherOrderScan(accumulator, seed)(this); } return higherOrderScan(accumulator)(this); } //# sourceMappingURL=scan.js.map