6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
export default function isLandscape(): boolean {
|
|
return (
|
|
Math.min(screen.availHeight, window.innerHeight) <
|
|
Math.min(screen.availWidth, window.innerWidth)
|
|
);
|
|
}
|