(content: string)
| 116 | } |
| 117 | |
| 118 | export function hashFileContent(content: string): string { |
| 119 | return createHash("sha1").update(content).digest("hex").slice(0, 12); |
| 120 | } |
| 121 | |
| 122 | export async function collectFiles( |
| 123 | root: string, |
nothing calls this directly
no outgoing calls
no test coverage detected