MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / findStyleElement

Function findStyleElement

packages/sdk/src/engine/model.ts:285–287  ·  view source on GitHub ↗
(document: Document)

Source from the content-addressed store, hash-verified

283// ─── CSS style helpers ────────────────────────────────────────────────────────
284
285function findStyleElement(document: Document): Element | null {
286 return document.querySelector("style") as unknown as Element | null;
287}
288
289export function getStyleSheet(document: Document): string {
290 return findStyleElement(document)?.textContent ?? "";

Callers 2

getStyleSheetFunction · 0.85
setStyleSheetFunction · 0.85

Calls 1

querySelectorMethod · 0.65

Tested by

no test coverage detected