This commit is contained in:
Andras Schmelczer 2023-04-15 21:57:33 +01:00
parent 9cf8f73e18
commit 5cc94805f1
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
17 changed files with 670 additions and 237 deletions

View file

@ -0,0 +1,3 @@
export const randomBetween = (min: number, max: number) => {
return Math.random() * (max - min) + min;
};