Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created February 6, 2018 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommcfarlin/39ef1124df6f041ccd379f7a0731d7bf to your computer and use it in GitHub Desktop.
Save tommcfarlin/39ef1124df6f041ccd379f7a0731d7bf to your computer and use it in GitHub Desktop.
[JavaScript] Check The User's Browser with JavaScript
/**
* Check to see if Chrome or Chromium is the current user's browser.
*
* @return True if so; otherwise, false.
*/
var _isChrome = function()
{
return (/chrom(e|ium)/.test(navigator.userAgent.toLowerCase()));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment