UNPKG

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