| 47 | } |
| 48 | |
| 49 | class BufferDecoder { |
| 50 | public decode(buffers: Buffer[]): string { |
| 51 | return Buffer.concat(buffers).toString('utf-8'); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | // This class is used by web and node tests. The web tests need to start a server outside of VS code (because they can't start python) |
| 56 | // so this class can't use anything that requires VS code types |
nothing calls this directly
no outgoing calls
no test coverage detected