We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e8e98 commit c80ce55Copy full SHA for c80ce55
src/lib/index.js
@@ -720,7 +720,7 @@ lib.getFirefoxVersion = function() {
720
var match = FIREFOX_VERSION_REGEX.exec(window.navigator.userAgent);
721
if(match && match.length === 2) {
722
var versionInt = parseInt(match[1]);
723
- if(!Number.isNaN(versionInt)) {
+ if(!isNaN(versionInt)) {
724
return versionInt;
725
}
726
0 commit comments