(path string)
| 234 | } |
| 235 | |
| 236 | func isPathRelativeToParent(path string) bool { |
| 237 | return strings.HasPrefix(path, "..") |
| 238 | } |
| 239 | |
| 240 | func getRelativePathIfInSameVolume(path string, directoryPath string, useCaseSensitiveFileNames bool) string { |
| 241 | relativePath := tspath.GetRelativePathToDirectoryOrUrl(directoryPath, path, false, tspath.ComparePathsOptions{ |
no outgoing calls
no test coverage detected