UNPKG

@popeindustries/lit-html

Version:

Seamlessly and efficiently use @popeindustries/lit-html-server rendered HTML to hydrate lit-html templates in the browser

24 lines (23 loc) 755 B
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: BSD-3-Clause */ import { directive } from '../directive.js'; import { UnsafeHTMLDirective } from './unsafe-html.js'; const SVG_RESULT = 2; class UnsafeSVGDirective extends UnsafeHTMLDirective { } UnsafeSVGDirective.directiveName = 'unsafeSVG'; UnsafeSVGDirective.resultType = SVG_RESULT; /** * Renders the result as SVG, rather than text. * * The values `undefined`, `null`, and `nothing`, will all result in no content * (empty string) being rendered. * * Note, this is unsafe to use with any user-provided input that hasn't been * sanitized or escaped, as it may lead to cross-site-scripting * vulnerabilities. */ export const unsafeSVG = directive(UnsafeSVGDirective);