193fb6ee3Sopenharmony_ciimport { Writable } from 'node:stream';
293fb6ee3Sopenharmony_ci
393fb6ee3Sopenharmony_ciexport class DevNullStream extends Writable {
493fb6ee3Sopenharmony_ci    override _write(_chunk: string, _encoding: string, cb: () => void): void {
593fb6ee3Sopenharmony_ci        cb();
693fb6ee3Sopenharmony_ci    }
793fb6ee3Sopenharmony_ci}
8