style.mjs 287 B

123456789
  1. /**
  2. * @license
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. import { unwrapStyleSheet } from '../../internals/style_sheet_impl';
  6. /** Safe setters for `HTMLStyleElement`s. */
  7. export function setTextContent(elem, safeStyleSheet) {
  8. elem.textContent = unwrapStyleSheet(safeStyleSheet);
  9. }