13 lines
364 B
JavaScript
13 lines
364 B
JavaScript
import crypto from "crypto";
|
|
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
|
|
}
|