(from string, to string, options ComparePathsOptions)
| 779 | } |
| 780 | |
| 781 | func GetRelativePathFromFile(from string, to string, options ComparePathsOptions) string { |
| 782 | return EnsurePathIsNonModuleName(GetRelativePathFromDirectory(GetDirectoryPath(from), to, options)) |
| 783 | } |
| 784 | |
| 785 | func ConvertToRelativePath(absoluteOrRelativePath string, options ComparePathsOptions) string { |
| 786 | if !IsRootedDiskPath(absoluteOrRelativePath) { |
no test coverage detected