MultiplayerMinesweeper/scripts/util.mjs

13 lines
364 B
JavaScript
Raw Normal View History

import crypto from "crypto";
2022-06-22 01:51:09 +00:00
export function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min) + min);
}
export function clamp(number, min, max) {
return Math.max(min, Math.min(number, max));
}
export function createCode() {
const randomString = crypto.randomBytes(3).toString("hex").toUpperCase()
return randomString
}