(content: string)
| 106 | * Calculate SHA256 hash of file contents |
| 107 | */ |
| 108 | export function hashContent(content: string): string { |
| 109 | return crypto.createHash('sha256').update(content).digest('hex'); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Skip files larger than this (bytes). Generated bundles, minified JS, and |
no outgoing calls
no test coverage detected