Files
est-frame/node_modules/@restart/ui/cjs/getScrollbarWidth.js
2025-10-22 05:38:27 +00:00

11 lines
343 B
JavaScript
Executable File

"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);
}