Last active
June 15, 2017 07:10
-
-
Save kmonsoor/2f4234761575dbdf7a988250d82151fa to your computer and use it in GitHub Desktop.
JavaScript : Create GUID / UUID
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
| /* | |
| * Generate RFC4122-v4 compliant high-resolution GUID / UUID | |
| * Source: http://stackoverflow.com/a/8809472/617185 | |
| * License: cc-by-sa 3.0 | |
| */ | |
| function generateUUID() { | |
| var d = new Date().getTime(); | |
| if (window.performance && typeof window.performance.now === "function") { | |
| d += performance.now(); //use high-precision timer if available | |
| } | |
| var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { | |
| var r = (d + Math.random() * 16) % 16 | 0; | |
| d = Math.floor(d / 16); | |
| return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16); | |
| }); | |
| return uuid; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment