(
chunk: any,
encoding: string,
callback: (error?: Error | null) => void,
)
| 297 | private readonly chunks: string[] = []; |
| 298 | |
| 299 | _write( |
| 300 | chunk: any, |
| 301 | encoding: string, |
| 302 | callback: (error?: Error | null) => void, |
| 303 | ): void { |
| 304 | this.chunks.push(chunk); |
| 305 | callback(); |
| 306 | } |
| 307 | |
| 308 | get content() { |
| 309 | return this.chunks.join(''); |
nothing calls this directly
no test coverage detected