(chunk, _encoding, callback)
| 4 | new Transform({ |
| 5 | objectMode: true, |
| 6 | transform(chunk, _encoding, callback) { |
| 7 | callback(null, fn(chunk)) |
| 8 | }, |
| 9 | }) |
| 10 | |
| 11 | export const streamEach = (writeFn: (chunk: any) => void) => |
no outgoing calls
no test coverage detected