* Determines whether a path is an absolute disk path (e.g. starts with `/`, or a dos path * like `c:`, `c:\` or `c:/`).
(path)
| 7564 | * like `c:`, `c:\` or `c:/`). |
| 7565 | */ |
| 7566 | function isRootedDiskPath(path) { |
| 7567 | return getEncodedRootLength(path) > 0; |
| 7568 | } |
| 7569 | ts.isRootedDiskPath = isRootedDiskPath; |
| 7570 | /** |
| 7571 | * Determines whether a path consists only of a path root. |
no test coverage detected
searching dependent graphs…