File size: 197 Bytes
1e92f2d |
1 2 3 4 5 |
export const IS_MAC =
typeof navigator !== 'undefined' && /Mac OS X/.test(navigator.userAgent)
export const IS_ANDROID =
typeof navigator !== 'undefined' && /Android/.test(navigator.userAgent)
|