augrinn/project-lvl1-s442

View on GitHub
src/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
const getRandomInt = (max, min) => Math.floor(Math.random() * (max - min)) + min;

export default getRandomInt;