(value: string)
| 246 | } |
| 247 | |
| 248 | function toPascalCasePart(value: string): string { |
| 249 | return fixBrandCasing(value.charAt(0).toUpperCase() + value.slice(1)); |
| 250 | } |
| 251 | |
| 252 | function toCSharpIdentifier(value: string, fallback: string): string { |
| 253 | let identifier = splitCSharpIdentifierParts(value).map(toPascalCasePart).join(""); |
nothing calls this directly
no test coverage detected
searching dependent graphs…