Created
January 14, 2021 16:22
-
-
Save GalloDaSballo/85769c0f98a5be8ac855b849bddcf56f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const string = window.navigator.userAgent; | |
| const isFirefox = string.includes("Firefox/") | |
| const isBrave = | |
| string.includes("Chrome/") && | |
| string.includes("Safari/") && | |
| !isFirefox; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment