Created
July 25, 2020 16:28
-
-
Save iceener/5ac86b4d3b59b0277a3e3860b7b6e860 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
| // Detect device | |
| const detectDeviceType = () => | |
| /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) | |
| ? 'mobile' | |
| : 'desktop'; | |
| // How2use? | |
| detectDeviceType(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment