We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c216368 commit edd4289Copy full SHA for edd4289
index.js
@@ -45,7 +45,7 @@ function obfuscate(string, elem) {
45
}, 0));
46
}
47
function replaceRand(string, i) {
48
- let randChar = String.fromCharCode(Math.floor(Math.random() * (27)) + 64);
+ let randChar = String.fromCharCode(Math.floor(Math.random() * 27) + 64);
49
return string.substr(0, i) + randChar + string.substr(i + 1, string.length);
50
51
0 commit comments