a0cf975f创建于 2023年5月16日历史提交
import { Writable } from 'node:stream';

export class DevNullStream extends Writable {
    override _write(_chunk: string, _encoding: string, cb: () => void): void {
        cb();
    }
}