(file: DiffFileName)
| 208 | * Generates a unique string numerical identifier based on the names of the file diff |
| 209 | */ |
| 210 | export function getHtmlId(file: DiffFileName): string { |
| 211 | return `d2h-${hashCode(filenameDiff(file)).toString().slice(-6)}`; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Selects the correct icon name for the file |
no test coverage detected
searching dependent graphs…