bufferCount.js 288 B

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