@commercelayer/react-components
Version:
The Official Commerce Layer React Components
2 lines • 493 B
JavaScript
"use client";
;Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=scrollbarWidth;function scrollbarWidth(){if(typeof document>"u")return 0;const scrollDiv=document.createElement("div");scrollDiv.setAttribute("style","width: 100px; height: 100px; overflow: scroll; position:absolute; top:-9999px;"),document.body.appendChild(scrollDiv);const scrollbarWidth2=scrollDiv.offsetWidth-scrollDiv.clientWidth;return document.body.removeChild(scrollDiv),scrollbarWidth2}