Created
March 11, 2022 00:07
-
-
Save gdibble/1fc987aa55bdcb8c2f5aafe551492a70 to your computer and use it in GitHub Desktop.
Revisions
-
gdibble created this gist
Mar 11, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ /** isMobile - Feature Detection of an actual mobile device * @description The localStorage.mobile works in Chrome mobile; the latter works in Safari mobile. * Does not trigger desktop browsers with or w/o the dev-tools open and/or on a mobile simulator. * @see https://stackoverflow.com/questions/11381673/detecting-a-mobile-browser/71030087#71030087 */ const isMobile = localStorage.mobile || window.navigator.maxTouchPoints > 1;