Fix minor incorrectness with fromIntV invocation

don't think this was a bug? but its not the correct number of arguments lol
This commit is contained in:
hppeng 2023-04-01 17:07:49 -07:00
parent 1ce6ec0af6
commit f75383dd98

View file

@ -278,7 +278,7 @@ Base64 = (function () {
let b64_str = "";
let i = 0;
while (i < this.length) {
b64_str += Base64.fromIntV(this.slice(i, i + 6), 1);
b64_str += Base64.fromIntN(this.slice(i, i + 6), 1);
i += 6;
}
@ -997,4 +997,4 @@ if (screen.width < 992) {
}
scrollPos = document.documentElement.scrollTop;
});
}
}