Last active
August 28, 2019 19:31
-
-
Save vincenavarro/8704fe7257b9f9fb99ea854165304d0b to your computer and use it in GitHub Desktop.
One Line Mobile Detection (Depreciated)
This file contains 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 isMobileDevice = () => (typeof window.orientation !== "undefined") || (navigator.userAgent.indexOf('IEMobile') !== -1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment