Skip to content

Commit edd4289

Browse files
author
root
committed
remove unneeded ()
1 parent c216368 commit edd4289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function obfuscate(string, elem) {
4545
}, 0));
4646
}
4747
function replaceRand(string, i) {
48-
let randChar = String.fromCharCode(Math.floor(Math.random() * (27)) + 64);
48+
let randChar = String.fromCharCode(Math.floor(Math.random() * 27) + 64);
4949
return string.substr(0, i) + randChar + string.substr(i + 1, string.length);
5050
}
5151
}

0 commit comments

Comments
 (0)