(
chunk: any,
encoding: string,
callback: (error?: Error | null) => void,
)
| 25 | } |
| 26 | |
| 27 | _write( |
| 28 | chunk: any, |
| 29 | encoding: string, |
| 30 | callback: (error?: Error | null) => void, |
| 31 | ): void { |
| 32 | this.chunks.push(chunk); |
| 33 | callback(); |
| 34 | } |
| 35 | |
| 36 | get content() { |
| 37 | return this.chunks.join(''); |
nothing calls this directly
no test coverage detected