()
| 396 | textDecoder: any; // TextDecoder found in browsers; not typed to avoid pulling in either "dom" or "node" types. |
| 397 | |
| 398 | constructor() { |
| 399 | this.buffer = []; |
| 400 | this.trailingCR = false; |
| 401 | } |
| 402 | |
| 403 | decode(chunk: Bytes): string[] { |
| 404 | let text = this.decodeText(chunk); |
nothing calls this directly
no outgoing calls
no test coverage detected