SANDRAMSC's picture
Updated README.md with Hugging Face configuration
51ddcbf
raw
history blame
150 Bytes
const escapeName = (name) => String(name)
.replace(/\r/g, "%0D")
.replace(/\n/g, "%0A")
.replace(/"/g, "%22");
export default escapeName;