UNPKG

@thang2162/react-native-user-agent

Version:

Library that helps you to get mobile application user agent and web view user agent strings.

13 lines (8 loc) 191 B
import { NativeModules } from 'react-native'; const { RNUserAgent } = NativeModules; module.exports = { ...RNUserAgent, getUserAgent: () => { return RNUserAgent.userAgent; } };