(document: Document)
| 310 | // ─── GSAP script helpers ────────────────────────────────────────────────────── |
| 311 | |
| 312 | function findGsapScriptElement(document: Document): Element | null { |
| 313 | const scripts = document.querySelectorAll("script"); |
| 314 | for (const script of Array.from(scripts)) { |
| 315 | const text = script.textContent ?? ""; |
| 316 | if (text.includes("gsap") || text.includes("ScrollTrigger")) |
| 317 | return script as unknown as Element; |
| 318 | } |
| 319 | return null; |
| 320 | } |
| 321 | |
| 322 | export function getGsapScript(document: Document): string | null { |
| 323 | const el = findGsapScriptElement(document); |
no test coverage detected