fix BUG 587

Bug587-yingzhizhao^2
yzzob 2025-06-24 18:16:47 +08:00
parent 8149392fa6
commit bc21a05b29
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ function containsDigitsLettersSpecialCharacters(s) {
resultL = /[a-z]/i.test(s); resultL = /[a-z]/i.test(s);
// Special charater test // Special charater test
'+-*/,.:;/\[]<>$%&()!?^~'.split('').forEach((x) => { '+-*/,.:;/\[]<>$%&()!?^~@'.split('').forEach((x) => {
if (s.includes(x)) if (s.includes(x))
resultS = 1; resultS = 1;
}); });