(chunk, enc, next)
| 15 | |
| 16 | const writable = new Writable({ |
| 17 | write (chunk, enc, next) { |
| 18 | chunks.push(chunk); |
| 19 | next(); |
| 20 | }, |
| 21 | destroy() { |
| 22 | endBuffers = {}; |
| 23 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…