UNPKG

@modern-kit/utils

Version:
15 lines (12 loc) 293 B
import { isServer } from '../../device/isServer/index.mjs'; function getViewportSize() { if (isServer()) { return { width: 0, height: 0 }; } return { width: window.innerWidth, height: window.innerHeight }; } export { getViewportSize }; //# sourceMappingURL=index.mjs.map