Gets the specified path relative to the base directory.
(baseDir: string, path: string)
| 180 | |
| 181 | /** Gets the specified path relative to the base directory. */ |
| 182 | function getRelativePath(baseDir: string, path: string) { |
| 183 | return convertPathToForwardSlash(relative(baseDir, path)); |
| 184 | } |
| 185 | |
| 186 | /** Converts the given reference chain to its string representation. */ |
| 187 | function convertReferenceChainToString(chain: ReferenceChain<string>) { |
no test coverage detected