2022-08-11 20:06:38 -07:00
|
|
|
/** Capitalize the first letter of a string. */
|
|
|
|
// https://stackoverflow.com/a/1026087
|
2024-05-12 16:18:04 -07:00
|
|
|
const capitalize = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);
|
2022-08-11 20:06:38 -07:00
|
|
|
|
|
|
|
export { capitalize };
|