Files
frontend/node_modules/@rc-component/portal/es/util.js
2026-01-17 15:16:36 -05:00

6 lines
249 B
JavaScript

/**
* Test usage export. Do not use in your production
*/
export function isBodyOverflowing() {
return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight) && window.innerWidth > document.body.offsetWidth;
}