UNPKG

cube-ui

Version:

A fantastic mobile ui lib implement by Vue

6 lines (5 loc) 251 B
// ssr support export const inBrowser = typeof window !== 'undefined' export const ua = inBrowser && navigator.userAgent.toLowerCase() export const isAndroid = ua && ua.indexOf('android') > 0 export const isIOS = ua && /iphone|ipad|ipod|ios/.test(ua)