UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

15 lines (13 loc) 272 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /** * Capitalize the first letter of each word */ export default function (str) { return str.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase() }) }