(filePath: string)
| 615 | } |
| 616 | |
| 617 | async function sha256File(filePath: string): Promise<string> { |
| 618 | const data = await fs.promises.readFile(filePath); |
| 619 | return createHash('sha256').update(new Uint8Array(data)).digest('hex'); |
| 620 | } |
no test coverage detected