()
| 265 | }); |
| 266 | |
| 267 | function onpause() { |
| 268 | if (!stdin._handle) |
| 269 | return; |
| 270 | if (stdin._handle.reading && !stdin.readableFlowing) { |
| 271 | stdin._readableState.reading = false; |
| 272 | stdin._handle.reading = false; |
| 273 | stdin._handle.readStop(); |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | addCleanup(function cleanupStdin() { |
| 278 | stdin.destroy(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…