overleaf/services/web/app/coffee/managers/GuidManager.coffee
2014-02-12 10:23:40 +00:00

6 lines
181 B
CoffeeScript

module.exports =
newGuid : ()->
S4 = ()->
return (((1+Math.random())*0x10000)|0).toString(16).substring(1)
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4())