UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

13 lines (11 loc) 207 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /** * Capitalize the first letter of the first word */ export default function (str) { return str.charAt(0).toUpperCase() + str.slice(1) }