mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
5 lines
164 B
TypeScript
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();
|
|
});
|
|
};
|