uniswap-interface-uncensored/src/utils/userAgent.ts

9 lines
242 B
TypeScript
Raw Normal View History

2021-09-24 18:13:40 +03:00
import { UAParser } from 'ua-parser-js'
const parser = new UAParser(window.navigator.userAgent)
const { type } = parser.getDevice()
export const userAgent = parser.getResult()
export const isMobile = type === 'mobile' || type === 'tablet'