(pathComponents)
| 7997 | } |
| 7998 | ts.normalizePath = normalizePath; |
| 7999 | function getPathWithoutRoot(pathComponents) { |
| 8000 | if (pathComponents.length === 0) |
| 8001 | return ""; |
| 8002 | return pathComponents.slice(1).join(ts.directorySeparator); |
| 8003 | } |
| 8004 | function getNormalizedAbsolutePathWithoutRoot(fileName, currentDirectory) { |
| 8005 | return getPathWithoutRoot(getNormalizedPathComponents(fileName, currentDirectory)); |
| 8006 | } |
no test coverage detected
searching dependent graphs…