@ta-interaktiv/browsercheck
v1.3.2
Published
Small library to check for various browsers and screen sizes.
Downloads
99
Readme
Browsercheck
Provides various checks to figure out in what environment we're currently operating in.
Installation
yarn add @ta-interaktiv/browsercheck
Example
import { browserCheck } from '@ta-interaktiv/browsercheck'
if (browserCheck.isIOS) {
// do something iOS-specific here
}
if (browserCheck.isAndroid) {
// do something Android-specific here
}