UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

5 lines 233 B
export function toDashCase(string, from = 'camel') { const regExp = from === 'camel' ? /([A-Z])/g : /_([a-zA-Z])/g; return string.replace(regExp, (match, p) => '-' + p.toLowerCase()); } //# sourceMappingURL=toDashCase.mjs.map