We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df29d0 commit 1414df8Copy full SHA for 1414df8
removebots.user.js
@@ -48,7 +48,7 @@ const SITES = Object.freeze({
48
// just a single, weird character
49
/^.$/,
50
// invisible characters
51
- /[\u200e]/u
+ /[\u200e]/u,
52
(text) => {
53
const charSets = [
54
{
@@ -62,7 +62,7 @@ const SITES = Object.freeze({
62
63
regex: /[\u{1D538}-\u{1D56B}\u{1D400}-\u{1D433}]/gu, // math letter symbols
64
matchPercent: 0.3
65
- },
+ }
66
];
67
for (const check of charSets) {
68
const { regex, matchPercent } = check,
0 commit comments