1 2 3 4 5 6 | 1× 1× 1× 1× | // ssr support export const inBrowser = typeof window !== 'undefined' export const ua = inBrowser && navigator.userAgent.toLowerCase() export const isWeChatDevTools = ua && /wechatdevtools/.test(ua) export const isAndroid = ua && ua.indexOf('android') > 0 |