()
| 5 | process.stdin = new Readable({ |
| 6 | encoding: 'utf8', |
| 7 | read() { |
| 8 | const error = new Error('Stream is broken.'); |
| 9 | return this.destroy ? this.destroy(error) : this.emit('error', error); |
| 10 | } |
| 11 | }); |
| 12 | |
| 13 | require('../../../../../dist/bin/rollup'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…