blob: 6706af5e52bff889f9a609851688a321b2cf3f01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { Writable, WritableOptions } from 'node:stream';
export class DevNull extends Writable implements NodeJS.WritableStream {
constructor(opts?: WritableOptions) {
super(opts);
}
_write (chunk: any, encoding: BufferEncoding, cb: (err?: Error | null) => void) {
setImmediate(cb);
}
}
|