Merge pull request #781 from timvisee/master

Don't translate URL-safe chars, b64 is doing it for us
This commit is contained in:
Danny Coates
2018-03-06 08:44:53 -08:00
committed by GitHub

View File

@@ -9,10 +9,9 @@ function arrayToB64(array) {
}
function b64ToArray(str) {
str = (str + '==='.slice((str.length + 3) % 4))
.replace(/-/g, '+')
.replace(/_/g, '/');
return b64.toByteArray(str);
return b64.toByteArray(
str + '==='.slice((str.length + 3) % 4)
);
}
function loadShim(polyfill) {