Initial commit

This commit is contained in:
Marek Lesko
2025-08-19 16:58:51 +02:00
commit a2f7e2285a
908 changed files with 160315 additions and 0 deletions

View File

@@ -0,0 +1 @@
import getComputedStyle from"./getComputedStyle.js";export default function isScrollParent(e){var e=getComputedStyle(e),t=e.overflow,o=e.overflowX,e=e.overflowY;return/auto|scroll|overlay|hidden/.test(t+e+o)}