amis-rpc-design/node_modules/@rc-component/portal/lib/util.js
2023-10-07 19:42:30 +08:00

12 lines
369 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isBodyOverflowing = isBodyOverflowing;
/**
* Test usage export. Do not use in your production
*/
function isBodyOverflowing() {
return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight) && window.innerWidth > document.body.offsetWidth;
}