mirror of
https://github.com/gchq/CyberChef
synced 2025-12-23 03:33:24 +00:00
Replaced jsHint with eslint. Fixes #4.
This commit is contained in:
@@ -25,7 +25,7 @@ var Extract = {
|
||||
total = 0,
|
||||
match;
|
||||
|
||||
while (!!(match = search_regex.exec(input))) {
|
||||
while ((match = search_regex.exec(input))) {
|
||||
if (remove_regex && remove_regex.test(match[0]))
|
||||
continue;
|
||||
total++;
|
||||
|
||||
Reference in New Issue
Block a user