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