return;
}
// if buffer data can be reduced into a single object,
// emit the reduced data
if (typeof this.reducer === 'function') {
const fullDataBuffer = this.reducer(this.buffer.data);
this.emitData(fullDataBuffer);
// otherwise emit each buffered data instance individually
for (const data of this.buffer.data) {