2022-06-10 16:35:53 +00:00
|
|
|
export function isIOS() {
|
|
|
|
return (
|
|
|
|
[
|
|
|
|
'iPad Simulator',
|
|
|
|
'iPhone Simulator',
|
|
|
|
'iPod Simulator',
|
|
|
|
'iPad',
|
|
|
|
'iPhone',
|
|
|
|
'iPod',
|
|
|
|
].includes(navigator.platform) ||
|
|
|
|
// iPad on iOS 13 detection
|
|
|
|
(navigator.userAgent.includes('Mac') && 'ontouchend' in document)
|
|
|
|
)
|
|
|
|
}
|
2022-09-09 05:02:06 +00:00
|
|
|
|
|
|
|
export function isAndroid() {
|
|
|
|
return navigator.userAgent.includes('Android')
|
2022-09-09 05:03:05 +00:00
|
|
|
}
|