(chunk, encoding, callback)
| 16 | outputBuffer = new ReadBuffer(); |
| 17 | output = new Writable({ |
| 18 | write(chunk, encoding, callback) { |
| 19 | outputBuffer.append(chunk); |
| 20 | callback(); |
| 21 | } |
| 22 | }); |
| 23 | }); |
| 24 |
nothing calls this directly
no test coverage detected
searching dependent graphs…