Skip to content

Instantly share code, notes, and snippets.

@syousif94
Created April 11, 2016 03:54
Show Gist options
  • Save syousif94/2904df0d9e5f17bb915de4a5a5df74fc to your computer and use it in GitHub Desktop.
Save syousif94/2904df0d9e5f17bb915de4a5a5df74fc to your computer and use it in GitHub Desktop.
export let iOS = (navigator.userAgent.indexOf('iPhone OS') > -1) || (navigator.userAgent.indexOf('iPad') > -1)
export let android = navigator.userAgent.indexOf('Android') > -1
export let windowsPhone = navigator.userAgent.indexOf('Windows Phone') > -1
export let mobile = iOS || android || windowsPhone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment