UNPKG

web-ui-pack

Version:
6 lines (5 loc) 286 B
export default function viewportSize() { const vh = Math.min(document.documentElement.clientHeight || Number.MAX_SAFE_INTEGER, window.innerHeight); const vw = Math.min(document.documentElement.clientWidth || Number.MAX_SAFE_INTEGER, window.innerWidth); return { vh, vw }; }