summary refs log tree commit diff
path: root/lib.ts
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2024-11-30 14:24:39 +0200
committerWlodekM <[email protected]>2024-11-30 14:24:39 +0200
commit714a4189eb02051ddd330513048b07b3be070e27 (patch)
tree64112d5ce9d2b433cc4be0adf561ac128a3d84b5 /lib.ts
parentf37e3537adb59f2b724259a1720295756eb94277 (diff)
do stuff 3
Diffstat (limited to 'lib.ts')
-rw-r--r--lib.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib.ts b/lib.ts
new file mode 100644
index 0000000..1103206
--- /dev/null
+++ b/lib.ts
@@ -0,0 +1,15 @@
+/**
+ * Returns a random integer between min (inclusive) and max (inclusive).
+ * The value is no lower than min (or the next integer greater than min
+ * if min isn't an integer) and no greater than max (or the next integer
+ * lower than max if max isn't an integer).
+ * Using Math.round() will give you a non-uniform distribution!
+ * @param min Min number
+ * @param max Max number
+ * @returns {Number}
+ */
+export function getRandomInt(min: number, max: number) {
+    min = Math.ceil(min);
+    max = Math.floor(max);
+    return Math.floor(Math.random() * (max - min + 1)) + min;
+}