UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 291 B
/** * @description will convert the passed string camel-case to kebab case. * @example camelCaseToKebab("backgroundColor") // background-color */ export default function camelCaseToKebab(str) { return str.replace(/([A-Z])/g, '-$1').toLowerCase(); // convert camelCase to kebab-case }