UNPKG

@msom/dom

Version:

@msom/dom

12 lines (10 loc) 305 B
import { CSSStyle, parseStyle } from "@msom/common"; export function addStyle(cssType: CSSStyle): void { new CSSStyleSheet({ baseURL: URL.createObjectURL( new Blob([typeof cssType === "string" ? cssType : parseStyle(cssType)], { type: "text/plain", }) ), }); }