implement createRandomInteger

This commit is contained in:
ansuz
2017-05-24 11:34:40 +02:00
parent 4d9060f49e
commit fd83ae3e61
2 changed files with 5 additions and 0 deletions

View File

@@ -131,5 +131,9 @@ define([], function () {
return g;
};
Util.createRandomInteger = function () {
return Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
};
return Util;
});