mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-03-24 07:09:22 +01:00
11 lines
297 B
TypeScript
11 lines
297 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);
|
|
}
|
|
}
|