* Get project name from path (OS-aware) * Extracts the final directory name from a project path
(projectPath: string)
| 256 | * Extracts the final directory name from a project path |
| 257 | */ |
| 258 | static getProjectName(projectPath: string): string { |
| 259 | return this.basename(projectPath) || "unknown"; |
| 260 | } |
| 261 | } |
no test coverage detected