Created
January 18, 2019 10:18
-
-
Save c3ry5/4f3ce4a342fae04453ea4c28966733bd to your computer and use it in GitHub Desktop.
This file contains 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
var guid = function() { | |
var nav = window.navigator; | |
var screen = window.screen; | |
var guid = nav.mimeTypes.length; | |
guid += nav.userAgent.replace(/\D+/g, ''); | |
guid += nav.plugins.length; | |
guid += screen.height || ''; | |
guid += screen.width || ''; | |
guid += screen.pixelDepth || ''; | |
return guid; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment