mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
|
import { default as sanitize_html_ } from "sanitize-html";
|
||
|
|
||
|
export function sanitize(source: string, root: string): string {
|
||
|
return sanitize_html_(source);
|
||
|
}
|