MultiplayerMinesweeper/util.js
2022-06-19 16:21:33 -04:00

8 lines
224 B
JavaScript

function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min) + min);
}
function clamp(number, min, max) {
return Math.max(min, Math.min(number, max));
}
module.exports = {randomNumber, clamp}