(content: string)
| 121 | * Calculate SHA256 hash of file contents |
| 122 | */ |
| 123 | export function hashContent(content: string): string { |
| 124 | return crypto.createHash('sha256').update(content).digest('hex'); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Skip files larger than this (bytes). Generated bundles, minified JS, and |
no outgoing calls
no test coverage detected