File size: 825 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
export const isDom = () => typeof window !== 'undefined';
export function getPlatform() {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const agent = navigator.userAgentData;
return (agent?.platform ?? navigator.platform);
}
const pt = (v) => isDom() && v.test(getPlatform().toLowerCase());
const ua = (v) => isDom() && v.test(navigator.userAgent);
const vn = (v) => isDom() && v.test(navigator.vendor);
export const isTouchDevice = () => isDom() && !!navigator.maxTouchPoints;
export const isMac = () => pt(/^mac/) && !isTouchDevice();
export const isIPhone = () => pt(/^iphone/);
export const isSafari = () => isApple() && vn(/apple/i);
export const isFirefox = () => ua(/firefox\//i);
export const isApple = () => pt(/mac|iphone|ipad|ipod/i);
export const isIos = () => isApple() && !isMac();
|