UNPKG

@zohodesk/hooks

Version:

Unified Component Library - Hooks

5 lines 232 B
export default function findScrollElementWithHidden(element) { var style = getComputedStyle(element); var overflowRegex = /(auto|scroll|hidden)/; return overflowRegex.test(style.overflow + style.overflowY + style.overflowX); }