enhancement(lint): Fix lint errors for ctf/update_files.js

Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
zeon-neon[bot] 2024-11-12 02:45:36 +00:00 committed by GitHub
parent 75883ff57a
commit a910094926
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,8 +7,13 @@ function getCloakChunk(s = 2, e = 4) {
.fill(eval(`0x${Math.random().toString().split(".")[1].slice(s, e)}`))
.toString("base64");
}
function getCloak() {
return [getCloakChunk(), getCloakChunk(3, 5), getCloakChunk(1, 2), getCloakChunk()].join(" ");
function getCloak() {
return [
getCloakChunk(),
getCloakChunk(3, 5),
getCloakChunk(1, 2),
getCloakChunk(),
].join(" ");
}
const stegcloak = new StegCloak(true, false);
function encrypt(str) {