minishouyin/node_modules/@rc-component/portal/es/util.js

6 lines
249 B
JavaScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
/**
* 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;
}