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