matvey-b/project-lvl1-s320

View on GitHub
src/utils.js

Summary

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

export const isEven = num => num % 2 === 0;