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

14 lines 383 B
import { isHTMLElement } from './is.utils'; export const getElementScroll = (element) => { if (isHTMLElement(element)) { return { scrollLeft: element.scrollLeft, scrollTop: element.scrollTop, }; } return { scrollLeft: window.scrollX, scrollTop: window.scrollY, }; }; //# sourceMappingURL=getElementScroll.js.map