2026-01-22 21:21:56 +05:30

9 lines
209 B
JavaScript

import { Writable } from "stream";
export class Collector extends Writable {
bufferedBytes = [];
_write(chunk, encoding, callback) {
this.bufferedBytes.push(chunk);
callback();
}
}