Flow for all the files
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
const randomInteger = (min, max) => {
|
||||
// @flow
|
||||
const randomInteger = (min: number, max: number) => {
|
||||
return Math.floor(Math.random() * (max - min + 1) + min);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user