Skip to content

Commit 1414df8

Browse files
committed
fix: syntax error
1 parent 6df29d0 commit 1414df8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

removebots.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const SITES = Object.freeze({
4848
// just a single, weird character
4949
/^.$/,
5050
// invisible characters
51-
/[\u200e]/u
51+
/[\u200e]/u,
5252
(text) => {
5353
const charSets = [
5454
{
@@ -62,7 +62,7 @@ const SITES = Object.freeze({
6262
{
6363
regex: /[\u{1D538}-\u{1D56B}\u{1D400}-\u{1D433}]/gu, // math letter symbols
6464
matchPercent: 0.3
65-
},
65+
}
6666
];
6767
for (const check of charSets) {
6868
const { regex, matchPercent } = check,

0 commit comments

Comments
 (0)