mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 23:06:16 -04:00
Fix lint errors
This commit is contained in:
parent
0cbb17f7ce
commit
3b3c27072f
1 changed files with 12 additions and 12 deletions
|
@ -147,14 +147,14 @@ class Sort extends Operation {
|
|||
b_ = b.split(/([^\da-f]+)/i);
|
||||
|
||||
for (let i = 0; i < a_.length; ++i) {
|
||||
let t = parseInt(a_[i], 16);
|
||||
const t = parseInt(a_[i], 16);
|
||||
if (!isNaN(t)) {
|
||||
a_[i] = t;
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = 0; i < b_.length; ++i) {
|
||||
let t = parseInt(b_[i], 16);
|
||||
const t = parseInt(b_[i], 16);
|
||||
if (!isNaN(t)) {
|
||||
b_[i] = t;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue