(content: string)
| 183 | * Compute SHA-256 hash of content. |
| 184 | */ |
| 185 | export function computeContentHash(content: string): string { |
| 186 | return createHash('sha256').update(content).digest('hex') |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Normalize file path to relative path from cwd for consistent tracking. |
no outgoing calls
no test coverage detected