aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/core-utils/miscs
diff options
context:
space:
mode:
Diffstat (limited to 'shared/core-utils/miscs')
-rw-r--r--shared/core-utils/miscs/miscs.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/core-utils/miscs/miscs.ts b/shared/core-utils/miscs/miscs.ts
index 1eee22d82..71703faac 100644
--- a/shared/core-utils/miscs/miscs.ts
+++ b/shared/core-utils/miscs/miscs.ts
@@ -1,3 +1,4 @@
1// high excluded
1function randomInt (low: number, high: number) { 2function randomInt (low: number, high: number) {
2 return Math.floor(Math.random() * (high - low) + low) 3 return Math.floor(Math.random() * (high - low) + low)
3} 4}