windowCount.js 226 B

12345
  1. import { windowCount as higherOrder } from 'rxjs/operators';
  2. export function windowCount(windowSize, startWindowEvery = 0) {
  3. return higherOrder(windowSize, startWindowEvery)(this);
  4. }
  5. //# sourceMappingURL=windowCount.js.map