X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Futils%2FUtils.js;h=5b26a4f8b9d2a7d473415843e67ae5c00602882c;hb=546dec0fafb76402766ba55c89866b9f8b329895;hp=15ee30711ec2c3645626b0e6af071abd212c71aa;hpb=4a56deef7aeca58425c92ec27388bbe34543ad4f;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Utils.js b/src/utils/Utils.js index 15ee3071..5b26a4f8 100644 --- a/src/utils/Utils.js +++ b/src/utils/Utils.js @@ -121,9 +121,9 @@ class Utils { static getRandomInt(max, min) { if (min) { - return Math.floor((Math.random() * (max - min)) + min); + return Math.floor((Math.random() * (max - min + 1)) + min); } - return Math.floor((Math.random() * max)); + return Math.floor((Math.random() * max + 1)); } static basicFormatLog(prefixString = '') {