(value: string)
| 242 | } |
| 243 | |
| 244 | function splitCSharpIdentifierParts(value: string): string[] { |
| 245 | return value.split(/[^A-Za-z0-9]+/).filter(Boolean); |
| 246 | } |
| 247 | |
| 248 | function toPascalCasePart(value: string): string { |
| 249 | return fixBrandCasing(value.charAt(0).toUpperCase() + value.slice(1)); |
no outgoing calls
no test coverage detected
searching dependent graphs…