shoelace/src/internal/string.ts

5 wiersze
174 B
TypeScript
Czysty Zwykły widok Historia

2022-12-06 16:48:57 +00:00
/** Converts the first letter of a string to uppercase */
2021-05-26 11:32:16 +00:00
export function uppercaseFirstLetter(string: string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}