(projectRoot: string)
| 172 | * @returns A SHA256 hash of the project root path. |
| 173 | */ |
| 174 | export function getProjectHash(projectRoot: string): string { |
| 175 | return crypto.createHash('sha256').update(projectRoot).digest('hex'); |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Generates a unique temporary directory path for a project. |
no test coverage detected