pravdorin/backend-project-lvl1

View on GitHub
src/utilities.js

Summary

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

export default randomizer;