blob: b2751f0bb3e14e52cb6af7831dd7b6421bc7204f (
plain)
1
2
3
4
5
6
7
8
9
10
|
const toTitleCase = (str) => {
return str.replace(
/\w\S*/g,
function(txt) {
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
}
);
}
export default toTitleCase
|