Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 3 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | export const randomInt = (min, max) => { |
||
2 | return Math.floor(Math.random() * (max - min + 1) + min) |
||
3 | } |
||
4 |