mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 07:33:09 +02:00
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
|
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);
|
||
|
}
|
||
|
}
|