(chunk, _encoding, callback)
| 45 | let output = '' |
| 46 | const writable = new Writable({ |
| 47 | write(chunk, _encoding, callback) { |
| 48 | output += String(chunk) |
| 49 | callback() |
| 50 | }, |
| 51 | }) |
| 52 | const console = new Console(writable) |
| 53 | const logger: ErrorLogger = { |
nothing calls this directly
no test coverage detected