(from, to, getCanonicalFileName)
| 8186 | } |
| 8187 | ts.convertToRelativePath = convertToRelativePath; |
| 8188 | function getRelativePathFromFile(from, to, getCanonicalFileName) { |
| 8189 | return ensurePathIsNonModuleName(getRelativePathFromDirectory(getDirectoryPath(from), to, getCanonicalFileName)); |
| 8190 | } |
| 8191 | ts.getRelativePathFromFile = getRelativePathFromFile; |
| 8192 | function getRelativePathToDirectoryOrUrl(directoryPathOrUrl, relativeOrAbsolutePath, currentDirectory, getCanonicalFileName, isAbsolutePathAnUrl) { |
| 8193 | var pathComponents = getPathComponentsRelativeTo(resolvePath(currentDirectory, directoryPathOrUrl), resolvePath(currentDirectory, relativeOrAbsolutePath), ts.equateStringsCaseSensitive, getCanonicalFileName); |
nothing calls this directly
no test coverage detected
searching dependent graphs…