Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/code-forge-io/Remix-Forge
/ uppercaseFirstLetter
Function
uppercaseFirstLetter
src/utils/string.ts:1–6 ·
view source on GitHub ↗
(string: string)
Source
from the content-addressed store, hash-verified
1
export
function
uppercaseFirstLetter(string: string): string {
2
if
(string.length > 0) {
3
return
string[0].toUpperCase() + string.substring(1);
4
}
5
return
string;
6
}
Callers
1
generateAuthSnippet
Function · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected