UNPKG

@inkline/inkline

Version:

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

5 lines 231 B
export function toCamelCase(string, from = 'dash') { const regExp = from === 'dash' ? /-([a-z0-9])/g : /_([a-z0-9])/g; return string.replace(regExp, (match, p) => p.toUpperCase()); } //# sourceMappingURL=toCamelCase.mjs.map