Created
February 1, 2018 08:13
-
-
Save andreasvirkus/7ec04975f9e6f642eb6549df1734b2fe to your computer and use it in GitHub Desktop.
Find out (somewhat successfully) whether your user is on a mobile (tablet included) or desktop platform.
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 supportsTouch = 'ontouchstart' in window || navigator.msMaxTouchPoints; | |
const agentSniff = typeof window.orientation !== "undefined" || | |
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); | |
export default supportsTouch && agentSniff; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment