xxphantom/backend-project-lvl1

View on GitHub
src/utils.js

Summary

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

export default random;