* Determines whether a path starts with a URL scheme (e.g. starts with `http://`, `ftp://`, `file://`, etc.).
(path)
| 7556 | * Determines whether a path starts with a URL scheme (e.g. starts with `http://`, `ftp://`, `file://`, etc.). |
| 7557 | */ |
| 7558 | function isUrl(path) { |
| 7559 | return getEncodedRootLength(path) < 0; |
| 7560 | } |
| 7561 | ts.isUrl = isUrl; |
| 7562 | /** |
| 7563 | * Determines whether a path is an absolute disk path (e.g. starts with `/`, or a dos path |
nothing calls this directly
no test coverage detected
searching dependent graphs…