Created
December 2, 2016 14:12
-
-
Save Farmatique/361a3b2bf0e07d179f63f1b4e3d5b7b7 to your computer and use it in GitHub Desktop.
PC platform detector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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