(content: string)
| 190 | * Compute content hash for cache invalidation. |
| 191 | */ |
| 192 | export function computeContentHash(content: string): string { |
| 193 | return createHash("sha256").update(content).digest("hex").slice(0, 16); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Estimate byte size of a JavaScript value. |
no outgoing calls
no test coverage detected