1export const getViewportSize = () => { 2 const width = Math.max( 3 document.documentElement ? document.documentElement.clientWidth : 0, 4 window.innerWidth || 0 5 ); 6 const height = Math.max( 7 document.documentElement ? document.documentElement.clientHeight : 0, 8 window.innerHeight || 0 9 ); 10 11 return { 12 width, 13 height, 14 }; 15}; 16