(dirPath)
| 556 | }, |
| 557 | |
| 558 | isDirEmptySync(dirPath) { |
| 559 | using _ = slowLogging`fs.isDirEmptySync(${dirPath})` |
| 560 | const files = this.readdirSync(dirPath) |
| 561 | return files.length === 0 |
| 562 | }, |
| 563 | |
| 564 | rmdirSync(dirPath) { |
| 565 | using _ = slowLogging`fs.rmdirSync(${dirPath})` |
nothing calls this directly
no outgoing calls
no test coverage detected