Skip to content

Instantly share code, notes, and snippets.

@Ademking
Created September 14, 2019 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ademking/ee4405078e71dec14a0b5c19bd5d95c0 to your computer and use it in GitHub Desktop.
Save Ademking/ee4405078e71dec14a0b5c19bd5d95c0 to your computer and use it in GitHub Desktop.
Create UUID
function create_UUID() {
		var dt = new Date().getTime();
		var uuid = 'xxyxxxxxxyxxxxxyxxxx'.replace(/[xy]/g, function(c) {
			var r = (dt + Math.random() * 16) % 16 | 0;
			dt = Math.floor(dt / 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