Kokchix/project-lvl1-s292

View on GitHub
src/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
export default (min, max) => {
  const rand = Math.round((min - 0.5) + (Math.random() * ((max - min) + 1)));
  return rand;
};