UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

17 lines (14 loc) 250 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /** * Formats the string to camelize format */ export default function (str) { return str.replace(/-(\w)/g, toUpper) } function toUpper (_, c) { return c ? c.toUpperCase() : '' }