This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
const LAYOUT_BREAKPOINT = 1024;
|
|
|
|
export function isMobile(width) {
|
|
return width <= LAYOUT_BREAKPOINT;
|
|
};
|
|
|
|
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
export function isIOS() {
|
|
return iOS;
|
|
};
|