UNPKG

@inkline/inkline

Version:

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

6 lines (4 loc) 209 B
export function toCamelCase (string: string, from = 'dash'): string { const regExp = from === 'dash' ? /-([a-z0-9])/g : /_([a-z0-9])/g; return string.replace(regExp, (match, p) => p.toUpperCase()); }