(ref: string)
| 81 | } |
| 82 | |
| 83 | function fixBrandRef(ref: string): string { |
| 84 | const lastSlash = ref.lastIndexOf("/"); |
| 85 | if (lastSlash === -1) return ref; |
| 86 | return `${ref.slice(0, lastSlash + 1)}${fixBrandCasing(ref.slice(lastSlash + 1))}`; |
| 87 | } |
| 88 | |
| 89 | function stableStringify(value: unknown): string { |
| 90 | if (Array.isArray(value)) { |
no test coverage detected
searching dependent graphs…