feishin/src/renderer/utils/title-case.ts
2022-12-19 17:44:40 -08:00

5 lines
164 B
TypeScript

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