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

7 lines
167 B
TypeScript
Raw Normal View History

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