You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
247 B

  1. export const decode = base64 => {
  2. const rawData = window.atob(base64);
  3. const outputArray = new Uint8Array(rawData.length);
  4. for (let i = 0; i < rawData.length; ++i) {
  5. outputArray[i] = rawData.charCodeAt(i);
  6. }
  7. return outputArray;
  8. };