(path)
| 7464 | return fileSystemEntryExists(path, 1 /* FileSystemEntryKind.Directory */); |
| 7465 | } |
| 7466 | function getDirectories(path) { |
| 7467 | return getAccessibleFileSystemEntries(path).directories.slice(); |
| 7468 | } |
| 7469 | function realpath(path) { |
| 7470 | try { |
| 7471 | return realpathSync(path); |
nothing calls this directly
no test coverage detected