Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export const toKebabCase = (string): string =>
string
?.replace(/([a-z])([A-Z])/g, "$1-$2")
.replace(/\s+/g, "-")
.toLowerCase();