diff --git a/lib/util.js b/lib/util.js index 3a2ac89..58ecc88 100644 --- a/lib/util.js +++ b/lib/util.js @@ -2,5 +2,6 @@ // Copyright Orange 2014 module.exports.randomId = function() { - return String(Math.random() * Math.random()).substr(3); + // 'Stolen' from Autobahn.js + return Math.floor(Math.random() * 9007199254740992); };