added more specials

This commit is contained in:
Jack 2020-08-13 22:08:48 +01:00
parent f64b8fc293
commit 2223df1b4b

View file

@ -318,6 +318,15 @@ function getSpecials() {
"_",
"=",
"+",
"{",
"}",
"[",
"]",
"'",
'"',
"/",
"\\",
"|",
];
for (let i = 0; i < randLen; i++) {
ret += specials[Math.floor(Math.random() * specials.length)];