(input: string)
| 23 | } |
| 24 | |
| 25 | function hashText(input: string): string { |
| 26 | return crypto.createHash("sha256").update(input).digest("hex").slice(0, 12); |
| 27 | } |
| 28 | |
| 29 | export function createRemoteProjectId(projectPath: string): string { |
| 30 | const normalizedPath = projectPath.replace(/\\/g, "/"); |
no test coverage detected