X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FUtils.js;h=5b26a4f8b9d2a7d473415843e67ae5c00602882c;hb=546dec0fafb76402766ba55c89866b9f8b329895;hp=f25f48b2b8a81d03b78a72a2c56dd6a4fd5ebf6e;hpb=4455e6148dde47af054aafb5e9a819e9dc658bb6;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Utils.js b/src/utils/Utils.js index f25f48b2..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 = '') { @@ -145,6 +145,13 @@ class Utils { } return false; } + + static isEmptyArray(object) { + if (Array.isArray(object) && object.length > 0) { + return false; + } + return true; + } } module.exports = Utils;