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, "");
}