aldarg/project-lvl1-s508

View on GitHub
src/utils.js

Summary

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

  return num;
};

export default getRandomInt;