UNPKG
is-firefox
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.0.0
Check if browser is Firefox
github.com/gillstrom/is-firefox
gillstrom/is-firefox
is-firefox
/
index.js
3 lines
(2 loc)
•
129 B
JavaScript
View Raw
1
2
3
'use strict'
;
module
.
exports
=
typeof
navigator !==
'undefined'
&&
/^(?!.*Seamonkey)(?=.*Firefox).*/i
.
test
(navigator.
userAgent
);