UNPKG

146 BJavaScriptView Raw
1export default function getViewportWidth() {
2 return Math.max(
3 window.document.documentElement.clientWidth,
4 window.innerWidth || 0
5 )
6}