6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
export function humanizeCapitalization(str: string): string {
|
|
return str.toLowerCase()
|
|
.split(' ')
|
|
.map(s => s.charAt(0).toUpperCase() + s.substring(1))
|
|
.join(' ');
|
|
} |