Fix auto-fixable issues (#11314)
This commit is contained in:
		| @@ -1,11 +1,11 @@ | ||||
| import { Writable, WritableOptions } from "node:stream"; | ||||
| import { Writable, WritableOptions } from 'node:stream'; | ||||
|  | ||||
| export class DevNull extends Writable implements NodeJS.WritableStream { | ||||
|     constructor(opts?: WritableOptions) { | ||||
|         super(opts); | ||||
|     } | ||||
| 	constructor(opts?: WritableOptions) { | ||||
| 		super(opts); | ||||
| 	} | ||||
|  | ||||
|     _write (chunk: any, encoding: BufferEncoding, cb: (err?: Error | null) => void) { | ||||
|         setImmediate(cb); | ||||
|     } | ||||
| 	_write (chunk: any, encoding: BufferEncoding, cb: (err?: Error | null) => void) { | ||||
| 		setImmediate(cb); | ||||
| 	} | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 woxtu
					woxtu