UNPKG

@smithy/node-http-handler

Version:
9 lines (8 loc) 209 B
import { Writable } from "stream"; export class Collector extends Writable { bufferedBytes = []; _write(chunk, encoding, callback) { this.bufferedBytes.push(chunk); callback(); } }