Merge pull request #781 from timvisee/master
Don't translate URL-safe chars, b64 is doing it for us
This commit is contained in:
commit
41796840c4
|
@ -9,10 +9,9 @@ function arrayToB64(array) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function b64ToArray(str) {
|
function b64ToArray(str) {
|
||||||
str = (str + '==='.slice((str.length + 3) % 4))
|
return b64.toByteArray(
|
||||||
.replace(/-/g, '+')
|
str + '==='.slice((str.length + 3) % 4)
|
||||||
.replace(/_/g, '/');
|
);
|
||||||
return b64.toByteArray(str);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadShim(polyfill) {
|
function loadShim(polyfill) {
|
||||||
|
|
Loading…
Reference in New Issue