5
packages/pl-fe/src/utils/strings.ts
Normal file
5
packages/pl-fe/src/utils/strings.ts
Normal file
@ -0,0 +1,5 @@
|
||||
/** Capitalize the first letter of a string. */
|
||||
// https://stackoverflow.com/a/1026087
|
||||
const capitalize = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);
|
||||
|
||||
export { capitalize };
|
||||
Reference in New Issue
Block a user