Guest User

Untitled

a guest
Dec 13th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function generateUUID() {
  2. var d = new Date().getTime();
  3. return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
  4. var r = (d + Math.random() * 16) % 16 | 0;
  5. d = Math.floor(d / 16);
  6. return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16);
  7. });
  8. }
Add Comment
Please, Sign In to add comment