(filePath: string)
| 81 | } |
| 82 | |
| 83 | export function hashFilePath(filePath: string): string { |
| 84 | const hash = crypto.createHash("sha256").update(filePath).digest("hex"); |
| 85 | return hash.slice(0, 20); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Build cache for a single setup file. |
no outgoing calls
no test coverage detected