8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
export const toTitleCase = (str: string) => {
|
|
return str
|
|
.toLowerCase()
|
|
.split(' ')
|
|
.map((s) => s.charAt(0).toUpperCase() + s.substring(1))
|
|
.join(' ');
|
|
};
|