mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import { isServer } from '..';
|
|
|
|
export function isAndroid(): boolean {
|
|
/* istanbul ignore next */
|
|
return isServer ? false : /android/.test(navigator.userAgent.toLowerCase());
|
|
}
|
|
|
|
export function isIOS(): boolean {
|
|
/* istanbul ignore next */
|
|
return isServer
|
|
? false
|
|
: /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase());
|
|
}
|