UNPKG

@inkline/inkline

Version:

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

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