UNPKG

@ozen-ui/kit

Version:

React component library

15 lines (14 loc) 479 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getScrollbarSize = void 0; var environment_1 = require("../../constants/environment"); var getScrollbarSize = function (el) { if (environment_1.isServer) { return 0; } if (!el || el === document.body) { return window.innerWidth - document.documentElement.clientWidth; } return el.offsetWidth - el.clientWidth; }; exports.getScrollbarSize = getScrollbarSize;