(uri: string)
| 102 | Returns the file extension of a URI |
| 103 | */ |
| 104 | export function getUriFileExtension(uri: string) { |
| 105 | const baseName = getUriPathBasename(uri); |
| 106 | return getFileExtensionFromBasename(baseName); |
| 107 | } |
| 108 | |
| 109 | export function getLastNUriRelativePathParts( |
| 110 | dirUriCandidates: string[], |
no test coverage detected