don't log unhide params to console

This commit is contained in:
leafee98 2023-10-23 16:39:36 +08:00
parent 5f4d08f091
commit b7dd9e8791

View file

@ -35,7 +35,6 @@
const ui8_arr = new Uint8Array(str_arr); const ui8_arr = new Uint8Array(str_arr);
const str = new TextDecoder().decode(ui8_arr); const str = new TextDecoder().decode(ui8_arr);
console.log(str);
return str; return str;
} }
@ -49,9 +48,6 @@
let seed = Number(anchor.getAttribute("seed")) let seed = Number(anchor.getAttribute("seed"))
console.log(arr);
console.log(seed);
anchor.href = unhide(seed, arr); anchor.href = unhide(seed, arr);
} }
} }