Check existence of navigator before using it (#1475)

This commit is contained in:
Daniel Huigens 2022-02-11 13:33:43 +01:00 committed by GitHub
parent f54b133085
commit f93f59e2e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -430,7 +430,7 @@ const util = {
return os.cpus().length;
}
return navigator.hardwareConcurrency || 1;
return (typeof navigator !== 'undefined' && navigator.hardwareConcurrency) || 1;
},
isEmailAddress: function(data) {