Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created December 2, 2016 14:12
Show Gist options
  • Save Farmatique/361a3b2bf0e07d179f63f1b4e3d5b7b7 to your computer and use it in GitHub Desktop.
Save Farmatique/361a3b2bf0e07d179f63f1b4e3d5b7b7 to your computer and use it in GitHub Desktop.
PC platform detector
function isMacintosh() {
return navigator.platform.indexOf('Mac') > -1
}
function isWindows() {
return navigator.platform.indexOf('Win') > -1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment