(chunk, encoding, callback)
| 82 | |
| 83 | const upper = new Transform({ |
| 84 | transform(chunk, encoding, callback) { |
| 85 | callback(null, uppercaseChunk(chunk)); |
| 86 | }, |
| 87 | }); |
| 88 | |
| 89 | const gz = zlib.createGzip(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…