()
| 21 | } |
| 22 | |
| 23 | open() { |
| 24 | this._writeStream = this.createFileWriteStream(this); |
| 25 | this._writeStream.on('error', (err) => { |
| 26 | this.emit('error', err); |
| 27 | }); |
| 28 | } |
| 29 | |
| 30 | destroy() { |
| 31 | this._writeStream.destroy(); |
no outgoing calls
no test coverage detected