9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
export const toTitleCase = (str) => {
|
|
return str.replace(/\w\S*/g, function (txt) {
|
|
return (
|
|
txt.charAt(0).toUpperCase() +
|
|
txt.substr(1).replaceAll("_", " ").toLowerCase()
|
|
);
|
|
});
|
|
};
|