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:
parent
1ce6ec0af6
commit
f75383dd98
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue