Skip to content

Instantly share code, notes, and snippets.

@wesleybliss
Created December 17, 2020 15:11
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 wesleybliss/8f6eb3a3d264eb0050f91cd9cf8eb1f3 to your computer and use it in GitHub Desktop.
Save wesleybliss/8f6eb3a3d264eb0050f91cd9cf8eb1f3 to your computer and use it in GitHub Desktop.
Get locale #js
export const getLocale = () => {
const locale = (navigator.languages && navigator.languages.length)
? navigator.languages[0]
: navigator.language
return locale || 'en-US'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment