/**
* Get the width of the vertical window scrollbar if it's visible
*/exportdefaultfunctiongetBodyScrollbarWidth(ownerDocument = document) {
constwindow = ownerDocument.defaultView;
returnMath.abs(window.innerWidth - ownerDocument.documentElement.clientWidth);
}