(fsPath: string)
| 659 | if (folder) { |
| 660 | const orig = folder; |
| 661 | const normalize = (fsPath: string) => { |
| 662 | fsPath = path.normalize(fsPath).replace(/\\/g, '/'); |
| 663 | fsPath = (fsPath === '/') ? fsPath : fsPath.replace(/\/+$/, ''); |
| 664 | if (process.platform === 'win32') { |
| 665 | fsPath = fsPath.toLowerCase(); |
| 666 | } |
| 667 | return fsPath; |
| 668 | }; |
| 669 | // Folder is always a full path name |
| 670 | folder = normalize(folder); |
| 671 | for (const f of vscode.workspace.workspaceFolders) { |
no outgoing calls
no test coverage detected