Ubuntu Pastebin

Paste from pobacke at Tue, 6 Oct 2015 13:04:18 +0000

Download as text
1
2
3
4
5
6
7
8
9
function uuid() {
    // RFC4122 http://www.ietf.org/rfc/rfc4122.txt
    var d = Date.now()
    return '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)
    })
};
Download as text