summaryrefslogtreecommitdiff
path: root/src/core/utils/toTitleCase.js
blob: 4335824ddf07524cb0925ed35e2bdaeccb8ceddf (plain)
1
2
3
4
5
6
7
const toTitleCase = (str) => {
  return str.replace(/\w\S*/g, function (txt) {
    return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase()
  })
}

export default toTitleCase