Formatting changes + Update version to 1.0.0

This commit is contained in:
2025-05-11 22:49:14 -05:00
parent e728666332
commit 27c72c53eb
12 changed files with 3372 additions and 149 deletions

View File

@@ -1,15 +1,14 @@
function randomHex(){
let hex="";
let randNum = 0;
randNum = (Math.floor(Math.random()*Math.floor(41)));
if(randNum<16){
hex = "0" + randNum.toString(16);
}
else{
hex = randNum.toString(16);
}
function randomHex() {
let hex = "";
let randNum = 0;
randNum = Math.floor(Math.random() * Math.floor(41));
if (randNum < 16) {
hex = "0" + randNum.toString(16);
} else {
hex = randNum.toString(16);
}
return hex;
return hex;
}
module.exports = { randomHex };