UNPKG

@framejs/mixins

Version:

A set of mixing to help and speed up development of web components

6 lines (5 loc) 171 B
export const hyphenToCamelCase = (string) => { return string.toLowerCase().replace(/-(.)/g, function (match, group1) { return group1.toUpperCase(); }); };