Created
September 6, 2013 04:23
-
-
Save monyskynet/6459535 to your computer and use it in GitHub Desktop.
GUID Generator
From http://note19.com/2007/05/27/javascript-guid-generator/
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 S4() { | |
return (((1+Math.random())*0x10000)|0).toString(16).substring(1); | |
} | |
function guid() { | |
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment