bigbuffet-rw/src/utils/strings.ts
2023-09-18 16:08:54 -05:00

7 lines
201 B
TypeScript

/** Capitalize the first letter of a string. */
// https://stackoverflow.com/a/1026087
function capitalize(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
export { capitalize };