This commit is contained in:
n1474335 2022-06-03 12:50:45 +01:00
commit d6f9e216a6
1 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,10 @@ class ToBase45 extends Operation {
if (chars < 2) {
res.push("0");
chars++;
}
if (pair.length > 1 && chars < 3) {
res.push("0");
}
}