(...args)
| 56 | // Compat with old node. |
| 57 | |
| 58 | function WriteStream(...args) { |
| 59 | fs.WriteStream.call(this, ...args); |
| 60 | } |
| 61 | Object.setPrototypeOf(WriteStream.prototype, fs.WriteStream.prototype); |
| 62 | Object.setPrototypeOf(WriteStream, fs.WriteStream); |
| 63 |
no test coverage detected
searching dependent graphs…