mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-09 07:45:00 -04:00
Fix lint errors
This commit is contained in:
parent
dce542a8a9
commit
e086952d09
1 changed files with 8 additions and 8 deletions
|
@ -245,7 +245,7 @@ function regexHighlight (input, regex, displayTotal) {
|
|||
title = "Offset: " + m.index + " ";
|
||||
if (m.length > 1) {
|
||||
title += "Groups: ";
|
||||
for ( let n = 1; n < m.length; ++n) {
|
||||
for (let n = 1; n < m.length; ++n) {
|
||||
title += n + ": " + m[n] + " ";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue