linstrom/frontend-reactive/app/helpers/isLandscape.ts

7 lines
173 B
TypeScript
Raw Permalink Normal View History

2024-09-23 07:18:35 +00:00
export default function isLandscape(): boolean {
2024-09-23 15:09:19 +00:00
return (
Math.min(screen.availHeight, window.innerHeight) <
Math.min(screen.availWidth, window.innerWidth)
);
2024-09-23 07:18:35 +00:00
}