UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

10 lines 365 B
export const hasVerticalScroll = (element) => { return element.scrollHeight > element.clientHeight; }; export const hasHorizontalScroll = (element) => { return element.scrollWidth > element.clientWidth; }; export const hasScroll = (element) => { return hasVerticalScroll(element) || hasHorizontalScroll(element); }; //# sourceMappingURL=hasScroll.js.map