Open JacksonGL opened 7 years ago
There is probably a bug here.
if (sixbits[3] >= 0x40) { decode64.length -= 1; // no side effect if (sixbits[2] >= 0x40) { decode64.length -= 1; // no side effect } }
decode64 is a primitive string value. Decreasing its length property has no side effect: it won't throw away the last character.
decode64
There is probably a bug here.
decode64
is a primitive string value. Decreasing its length property has no side effect: it won't throw away the last character.