UNPKG

vant

Version:

Mobile UI Components built on Vue

9 lines 319 B
import { isServer } from '..'; export function isAndroid() { /* istanbul ignore next */ return isServer ? false : /android/.test(navigator.userAgent.toLowerCase()); } export function isIOS() { /* istanbul ignore next */ return isServer ? false : /ios|iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase()); }