(filePath: string)
| 473 | |
| 474 | // Resolve '~' at the start of the path. |
| 475 | export function resolveHome(filePath: string): string { |
| 476 | return filePath.replace(/^\~/g, os.homedir()); |
| 477 | } |
| 478 | |
| 479 | export function asFolder(uri: vscode.Uri): string { |
| 480 | let result: string = uri.toString(); |
no outgoing calls
no test coverage detected