nbvehbq/project-lvl1-s89

View on GitHub
src/lib/utils.js

Summary

Maintainability
A
0 mins
Test Coverage

const getRandomInt = (min, max) => Math.floor(Math.random() * (max - min)) + min;

export default getRandomInt;