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