import { isServer } from '../../constants/environment';
export var getScrollbarSize = function (el) {
if (isServer) {
return 0;
}
if (!el || el === document.body) {
return window.innerWidth - document.documentElement.clientWidth;
}
return el.offsetWidth - el.clientWidth;
};