We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea83723 + 38ca594 commit ee286f9Copy full SHA for ee286f9
src/enc-base64.js
@@ -90,7 +90,8 @@
90
if (i % 4) {
91
var bits1 = map.indexOf(base64Str.charAt(i - 1)) << ((i % 4) * 2);
92
var bits2 = map.indexOf(base64Str.charAt(i)) >>> (6 - (i % 4) * 2);
93
- words[nBytes >>> 2] |= (bits1 | bits2) << (24 - (nBytes % 4) * 8);
+ var bitsCombined = bits1 | bits2;
94
+ words[nBytes >>> 2] |= (bitsCombined) << (24 - (nBytes % 4) * 8);
95
nBytes++;
96
}
97
0 commit comments