/**
* Vuikit 0.7.0
* (c) 2018 Miljan Aleksic
* @licenseMIT
*//**
* Capitalize the first letter of each word
*/exportdefaultfunction (str) {
return str.replace(/\w\S*/g, function (txt) {
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase()
})
}