()
| 19 | |
| 20 | class JSONTransformer { |
| 21 | constructor() { |
| 22 | this.chunks = []; |
| 23 | this.depth = 0; |
| 24 | this.inString = false; |
| 25 | this.skipNext = false; |
| 26 | this.decoder = new TextDecoder(); |
| 27 | } |
| 28 | |
| 29 | start() {} |
| 30 | flush() {} |
nothing calls this directly
no outgoing calls
no test coverage detected