UNPKG

@inkline/inkline

Version:

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

6 lines (4 loc) 212 B
export function toDashCase (string: string, from = 'camel'): string { const regExp = from === 'camel' ? /([A-Z])/g : /_([a-zA-Z])/g; return string.replace(regExp, (match, p) => '-' + p.toLowerCase()); }