Fix lint errors
parent
0cbb17f7ce
commit
3b3c27072f
|
@ -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…
Reference in New Issue