Files
gymflow/utils/text.ts

6 lines
183 B
TypeScript

export const toTitleCase = (str: string): string => {
return str.replace(/\w\S*/g, (txt) => {
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
});
};