UNPKG

rxjs-compat

Version:

<img src="doc/asset/Rx_Logo_S.png" alt="RxJS Logo" width="86" height="86"> RxJS: Reactive Extensions For JavaScript ======================================

6 lines 285 B
import { windowCount as higherOrder } from 'rxjs/operators'; export function windowCount(windowSize, startWindowEvery) { if (startWindowEvery === void 0) { startWindowEvery = 0; } return higherOrder(windowSize, startWindowEvery)(this); } //# sourceMappingURL=windowCount.js.map