You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/[a|b|c]/;// $ Alert -- Reapted | character in character class, which has no special meaning in this context
15
+
/[a|b|c]/;// $ Alert -- Repeated | character in character class, which has no special meaning in this context
16
16
/[:alnum:]/;// $ Alert -- JavaScript does not support POSIX character classes like `[:alnum:]` in regular expressions, thus characters in the class are treated as literals
17
17
/[(^style|^staticStyle)]/;// $ Alert
18
18
/[.x.]/i;// $ Alert -- Repeated . character in character class
0 commit comments