needed this for some testing

This commit is contained in:
Bruno Windels 2020-09-16 14:43:20 +02:00
parent b4e6be638a
commit 192b790981
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ export class CryptoDriver {
}
}
function decodeBase64(base64) {
export function decodeBase64(base64) {
const binStr = window.atob(base64);
const len = binStr.length;
const bytes = new Uint8Array(len);