mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-24 02:16:12 +08:00
12 lines
340 B
TypeScript
12 lines
340 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());
|
|
}
|