mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
Fix operation linting
This commit is contained in:
parent
44a164ed28
commit
822a4fab86
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class GenerateDeBruijnSequence extends Operation {
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
a[t] = a[t - p];
|
a[t] = a[t - p];
|
||||||
db(t + 1, p);
|
db(t + 1, p);
|
||||||
for (let j = a[t - p] + 1; j < k; j++) {
|
for (let j = a[t - p] + 1; j < k; j++) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue