mand-mobile/components/_util/env.js

10 lines
431 B
JavaScript
Raw Normal View History

2018-03-26 16:04:04 +08:00
// Development environment
export const isProd = process.env.NODE_ENV === 'production'
// Browser environment sniffing
export const inBrowser = typeof window !== 'undefined'
export const UA = inBrowser && window.navigator.userAgent.toLowerCase()
export const isAndroid = UA && UA.indexOf('android') > 0
export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)
export const root = typeof window !== 'undefined' ? window : global