Skip to content

Instantly share code, notes, and snippets.

View davidep87's full-sized avatar
๐Ÿ˜‡
Working remotely from Sardinia

Davide Polano davidep87

๐Ÿ˜‡
Working remotely from Sardinia
View GitHub Profile
function guid() {
return s4() + s4() + s4();
}
function s4() {
return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
}
let uid = guid();