Skip to content

Instantly share code, notes, and snippets.

@iceener
Created July 25, 2020 16:28
Show Gist options
  • Select an option

  • Save iceener/5ac86b4d3b59b0277a3e3860b7b6e860 to your computer and use it in GitHub Desktop.

Select an option

Save iceener/5ac86b4d3b59b0277a3e3860b7b6e860 to your computer and use it in GitHub Desktop.
// 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