DEV: tiny refactor in watched words (#12969)
This commit is contained in:
parent
b61d4663ec
commit
82ecd9fdd5
|
@ -11,16 +11,14 @@ function findAllMatches(text, matchers, useRegExp) {
|
|||
|
||||
if (useRegExp) {
|
||||
const maxMatches = 100;
|
||||
let index = 0;
|
||||
let count = 0;
|
||||
|
||||
matchers.forEach((matcher) => {
|
||||
let match;
|
||||
while (
|
||||
(match = matcher.pattern.exec(text)) !== null &&
|
||||
index < maxMatches
|
||||
count++ < maxMatches
|
||||
) {
|
||||
index++;
|
||||
|
||||
matches.push({
|
||||
index: match.index,
|
||||
text: match[0],
|
||||
|
|
Loading…
Reference in New Issue