fix linting again

This commit is contained in:
TheSavageTeddy 2022-11-25 11:08:01 +08:00
parent 78d35ecec3
commit d77f8ba747
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class FromBase85 extends Operation {
.map((chr, idx) => {
const digit = alphabet.indexOf(chr);
if ((digit < 0 || digit > 84) && chr !== "z") {
throw `Invalid character '${chr}' at index ${i + idx}`;
throw `Invalid character '${chr}' at index ${i + idx}`;
}
return digit;
});