8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
|
export function toTitleCase (str) {
|
||
|
return str
|
||
|
.replace(/\w\S*/g, function (txt) {
|
||
|
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
|
||
|
})
|
||
|
.replace(/_/g, ' ');
|
||
|
}
|