Index: lib/matcher.js |
=================================================================== |
--- a/lib/matcher.js |
+++ b/lib/matcher.js |
@@ -364,17 +364,18 @@ |
); |
if (matcher.hasFilter(filter)) |
return !matcher.getKeywordForFilter(filter); |
return !matcher.findKeyword(filter); |
}, |
/** |
* Optimized filter matching testing both whitelist and blacklist matchers |
- * simultaneously. For parameters see Matcher.matchesAny(). |
+ * simultaneously. For parameters see |
+ {@link Matcher#matchesAny Matcher.matchesAny()}. |
* @see Matcher#matchesAny |
* @inheritdoc |
*/ |
matchesAnyInternal(location, typeMask, docDomain, thirdParty, sitekey, |
specificOnly) |
{ |
let candidates = location.toLowerCase().match(/[a-z0-9%]{3,}/g); |
if (candidates === null) |