(localPathOrUri: string)
| 16 | } |
| 17 | |
| 18 | export function localPathOrUriToPath(localPathOrUri: string): string { |
| 19 | try { |
| 20 | return fileURLToPath(localPathOrUri); |
| 21 | } catch (e) { |
| 22 | // console.log("Received local filepath", localPathOrUri); |
| 23 | |
| 24 | return localPathOrUri; |
| 25 | } |
| 26 | } |
no outgoing calls
no test coverage detected