Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 335 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 335 Bytes

is-useragent-ios

Install

npm i is-useragent-ios

Usage

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)