Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
119 Bytes
export const FixString = (string) => {
return string.split(" ").join("").toLowerCase().replace(/[^a-z0-9]/g, "");
}