windowCount.js 285 B

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