Files
TestMesa/backend/frontend/node_modules/@restart/ui/cjs/getScrollbarWidth.js
2024-12-17 13:23:11 -08:00

11 lines
343 B
JavaScript

"use strict";
exports.__esModule = true;
exports.default = getBodyScrollbarWidth;
/**
* Get the width of the vertical window scrollbar if it's visible
*/
function getBodyScrollbarWidth(ownerDocument = document) {
const window = ownerDocument.defaultView;
return Math.abs(window.innerWidth - ownerDocument.documentElement.clientWidth);
}