gradio-pr-bot's picture
Upload folder using huggingface_hub
d394e75 verified
raw
history blame contribute delete
145 Bytes
import { default as sanitize_html_ } from "sanitize-html";
export function sanitize(source: string): string {
return sanitize_html_(source);
}