MCPcopy Create free account
hub / github.com/outerbase/studio / capitalizeFirstChar

Function capitalizeFirstChar

src/components/chart/chart-background-selection.tsx:136–139  ·  view source on GitHub ↗
(word: string)

Source from the content-addressed store, hash-verified

134}
135
136export function capitalizeFirstChar(word: string): string {
137 if (!word) return word;
138 return word.charAt(0).toUpperCase() + word.slice(1);
139}

Callers 2

ChartYAxisSectionFunction · 0.90
EditChartMenuFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected