(path: string)
| 43 | |
| 44 | // Explicitly export for testing purposes - not part of the public API |
| 45 | export function removeFileProtocol(path: string) { |
| 46 | if (path.startsWith(filePrefix)) { |
| 47 | return path.slice(filePrefix.length); |
| 48 | } |
| 49 | return path; |
| 50 | } |
| 51 | |
| 52 | // Explicitly export for testing purposes - not part of the public API |
| 53 | export function check_path(parent: string, directory: string) { |
no outgoing calls
no test coverage detected