(chunk, encoding, callback)
| 91 | let totalBytes = 0; |
| 92 | const sink = new Writable({ |
| 93 | write(chunk, encoding, callback) { |
| 94 | totalBytes += chunk.length; |
| 95 | callback(); |
| 96 | }, |
| 97 | }); |
| 98 | |
| 99 | pipeline(rs, upper, gz, sink, (err) => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…