aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/core-utils/common/random.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/core-utils/common/random.ts')
-rw-r--r--shared/core-utils/common/random.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared/core-utils/common/random.ts b/shared/core-utils/common/random.ts
new file mode 100644
index 000000000..705735d09
--- /dev/null
+++ b/shared/core-utils/common/random.ts
@@ -0,0 +1,8 @@
1// high excluded
2function randomInt (low: number, high: number) {
3 return Math.floor(Math.random() * (high - low) + low)
4}
5
6export {
7 randomInt
8}