MCPcopy Index your code
hub / github.com/github/copilot-sdk / toPascalCasePart

Function toPascalCasePart

scripts/codegen/csharp.ts:248–250  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

246}
247
248function toPascalCasePart(value: string): string {
249 return fixBrandCasing(value.charAt(0).toUpperCase() + value.slice(1));
250}
251
252function toCSharpIdentifier(value: string, fallback: string): string {
253 let identifier = splitCSharpIdentifierParts(value).map(toPascalCasePart).join("");

Callers

nothing calls this directly

Calls 1

fixBrandCasingFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…