mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
6 lines
172 B
TypeScript
6 lines
172 B
TypeScript
export const titleCase = (str: string) => {
|
|
return str.replace(/\w\S*/g, (txt) => {
|
|
return txt.charAt(0).toUpperCase() + txt.slice(1).toLowerCase();
|
|
});
|
|
};
|