astro-ghostcms/.pnpm-store/v3/files/05/4e524cde951eecd2f3731388199...

20 lines
420 B
Plaintext

let policy;
function createPolicy() {
try {
policy = window.trustedTypes.createPolicy("iconify", {
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
createHTML: (s) => s
});
} catch (err) {
policy = null;
}
}
function cleanUpInnerHTML(html) {
if (policy === void 0) {
createPolicy();
}
return policy ? policy.createHTML(html) : html;
}
export { cleanUpInnerHTML };