| 164 | |
| 165 | |
| 166 | internals.Empty = class extends Stream.Readable { |
| 167 | |
| 168 | _read(/* size */) { |
| 169 | |
| 170 | this.push(null); |
| 171 | } |
| 172 | |
| 173 | writeToStream(stream) { |
| 174 | |
| 175 | stream.end(); |
| 176 | } |
| 177 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected