mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
5 lines
174 B
TypeScript
5 lines
174 B
TypeScript
/** Converts the first letter of a string to uppercase */
|
|
export function uppercaseFirstLetter(string: string) {
|
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
}
|