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;
});

View File

@ -72,6 +72,7 @@ define([
common.bytesToKilobytes = Util.bytesToKilobytes;
common.fetch = Util.fetch;
common.throttle = Util.throttle;
common.createRandomInteger = Util.createRandomInteger;
// import hash utilities for export
var createRandomHash = common.createRandomHash = Hash.createRandomHash;