is-useragent-ios
v1.0.0
Published
Checks if useragent is iOS
Downloads
14
Maintainers
Readme
is-useragent-ios
Install
npm i is-useragent-iosUsage
import isUserAgentIOS from 'is-useragent-ios'
// get UA string from navigator or somewhere else
const ua = navigator.userAgent
// invoke the method
const isIOS = isUserAgentIOS(ua)
// outputs whether the browser is iOS
console.log(isIOS)
