(stream)
| 151 | const r = instream.pipeThrough(tstream); |
| 152 | |
| 153 | async function read(stream) { |
| 154 | let res = ''; |
| 155 | for await (const chunk of stream) |
| 156 | res += chunk; |
| 157 | return res; |
| 158 | } |
| 159 | |
| 160 | read(r).then(common.mustCall((data) => { |
| 161 | const check = readFileSync(__filename); |
no outgoing calls
no test coverage detected
searching dependent graphs…