UNPKG

@framejs/mixins

Version:

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

4 lines (3 loc) 115 B
export const camelCaseToHyphen = (name) => { return name.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(); };