(value: string)
| 111 | * capital "H" and no "Github" substring, so it is unaffected. |
| 112 | */ |
| 113 | export function fixBrandCasing(value: string): string { |
| 114 | return value.replace(/Github/g, "GitHub"); |
| 115 | } |
| 116 | |
| 117 | const BRAND_NORMALIZED_STRING_KEYS = new Set(["title", "description", "markdownDescription"]); |
| 118 |
no outgoing calls
no test coverage detected
searching dependent graphs…