UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

15 lines (13 loc) 238 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /** * Formats the string adding an hyphen between each word */ export default function (str) { return str .replace(/([a-z\d])([A-Z])/g, '$1-$2') .toLowerCase() }