(path: string)
| 521 | }, |
| 522 | |
| 523 | realpathSync(path: string) { |
| 524 | using _ = slowLogging`fs.realpathSync(${path})` |
| 525 | return fs.realpathSync(path).normalize('NFC') |
| 526 | }, |
| 527 | |
| 528 | mkdirSync(dirPath, options) { |
| 529 | using _ = slowLogging`fs.mkdirSync(${dirPath})` |
no outgoing calls
no test coverage detected