(path, options)
| 567 | }, |
| 568 | |
| 569 | rmSync(path, options) { |
| 570 | using _ = slowLogging`fs.rmSync(${path})` |
| 571 | fs.rmSync(path, options) |
| 572 | }, |
| 573 | |
| 574 | createWriteStream(path: string) { |
| 575 | return fs.createWriteStream(path) |
no outgoing calls
no test coverage detected