MCPcopy 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

1export 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

generateAuthSnippetFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected