Renamed /src to /frontend
This commit is contained in:
7
frontend/utils/random.js
Normal file
7
frontend/utils/random.js
Normal file
@ -0,0 +1,7 @@
|
||||
const randomInteger = (min, max) => {
|
||||
return Math.floor(Math.random()*(max-min+1)+min);
|
||||
}
|
||||
|
||||
export {
|
||||
randomInteger
|
||||
};
|
Reference in New Issue
Block a user