UNPKG

hd-utils

Version:

A handy utils for modern JS developers

6 lines (5 loc) 212 B
/** * @description will convert the passed string camel-case to kebab case. * @example camelCaseToKebab("backgroundColor") // background-color */ export default function camelCaseToKebab(str: string): string;