File size: 145 Bytes
8ab2594
 
 
 
 
1
2
3
4
5
6
import { default as sanitize_html_ } from "sanitize-html";

export function sanitize(source: string): string {
	return sanitize_html_(source);
}