Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
136
export function capitalizeFirstChar(word: string): string {
137
if (!word) return word;
138
return word.charAt(0).toUpperCase() + word.slice(1);
139
}
Callers
2
ChartYAxisSection
Function · 0.90
EditChartMenu
Function · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected