mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-08 10:29:37 +00:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import xss from "xss";
|
|
|
|
export const filterXSS = (html: string) =>
|
|
xss(html, {
|
|
whiteList: {},
|
|
stripIgnoreTag: true,
|
|
stripIgnoreTagBody: true,
|
|
});
|