is-chrome
v3.0.0
Published
Check if browser is Google Chrome
Downloads
87
Maintainers
Readme
is-chrome
Check if browser is Google Chrome
User agent sniffing is considered bad practice and should be avoided if possible.
Install
$ npm install is-chrome
Usage
const isChrome = require('is-chrome');
isChrome();
//=> true
isChrome({version: 42});
//=> true
isChrome({userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36 OPR/29.0.1795.60'});
//=> false (This is from Opera)
isChrome([options])
Returns a boolean
.
options
Type: object
options.userAgent
Type: string
User agent to test.
options.version
Type: string
or number
Check for specific version.
Related
- brwsr - Get current browser
License
MIT © Andreas Gillström