DocumentServer/OnlineEditorsExample/OnlineEditorsExampleNodeJS/helpers/guidManager.js
2015-04-29 19:10:50 +03:00

7 lines
238 B
JavaScript

var s4 = function () {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
};
exports.newGuid = function () {
return (s4() + s4() + "-" + s4() + "-" + s4() + "-" + s4() + "-" + s4() + s4() + s4());
};