Skip to content

navigator check in browser-like(but not browser) environments#151

Closed
adgang wants to merge 1 commit intochalk:mainfrom
adgang:patch-1
Closed

navigator check in browser-like(but not browser) environments#151
adgang wants to merge 1 commit intochalk:mainfrom
adgang:patch-1

Conversation

@adgang
Copy link
Copy Markdown

@adgang adgang commented Aug 31, 2023

This helps prevent errors like:

ReferenceError: navigator is not defined

in environments where navigator does not exist but has polyfills and might look like browser to libraries.

Comment thread browser.js
if (brand?.version > 93) {
return 3;
if (typeof navigator !== 'undefined') {
if (navigator.userAgentData) {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can just do this instead the if.

Suggested change
if (navigator.userAgentData) {
if (globalThis.navigator?.userAgentData) {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants