Skip to content

Instantly share code, notes, and snippets.

@directionforward
Last active December 17, 2020 17:57
Show Gist options
  • Save directionforward/ae863954e7d7c2d9768a2eb7fb2fcfd5 to your computer and use it in GitHub Desktop.
Save directionforward/ae863954e7d7c2d9768a2eb7fb2fcfd5 to your computer and use it in GitHub Desktop.
Quick user agent identify
const userAgent = navigator.userAgent.toLowerCase();
console.log(userAgent);
const isTablet = /(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(userAgent);
console.log(isTablet);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment