util.js 369 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.isBodyOverflowing = isBodyOverflowing;
  6. /**
  7. * Test usage export. Do not use in your production
  8. */
  9. function isBodyOverflowing() {
  10. return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight) && window.innerWidth > document.body.offsetWidth;
  11. }