(cwd: string, filename: string)
| 2641 | } |
| 2642 | |
| 2643 | function normalizeFile(cwd: string, filename: string): string { |
| 2644 | return normalizePathName(path.relative(cwd, filename)) |
| 2645 | } |
| 2646 | |
| 2647 | function hashSource(source: string): string { |
| 2648 | return crypto.createHash("sha256").update(source).digest("hex") |
no test coverage detected