/** Converts a string to kebab case */ export function toKebabCase(str: string) { return str .replace(/([a-z])([A-Z])/g, "$1-$2") .replace(/[\s_]+/g, "-") .toLowerCase() }