fix BUG 587
parent
8149392fa6
commit
bc21a05b29
|
@ -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;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue