Shared assets, cleanup for initial deploy
This commit is contained in:
6
shared/random.js
Normal file
6
shared/random.js
Normal file
@@ -0,0 +1,6 @@
|
||||
// @flow
|
||||
const randomInteger = (min: number, max: number) => {
|
||||
return Math.floor(Math.random() * (max - min + 1) + min);
|
||||
};
|
||||
|
||||
export { randomInteger };
|
||||
Reference in New Issue
Block a user