Files
frontend/node_modules/@rc-component/portal/lib/util.js
2026-01-17 15:16:36 -05: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;
}