mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-20 16:32:46 +09:00

* wip * update pnpm-lock * use our own DevNull * fix * deliverJobConcurrencyをmacSocketsで割ってソケット数にする
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);
|
|
}
|
|
}
|