catch split exception in parsebase64

This commit is contained in:
Matthew Dillon 2015-07-16 12:56:19 -08:00
parent 755414cd7a
commit c7dc14d4f9

View file

@ -1,6 +1,7 @@
export default function parseBase64(token) {
let tokenData = atob(token.split('.')[1]);
let tokenData;
try {
tokenData = atob(token.split('.')[1]);
return JSON.parse(tokenData);
} catch (e) {
return tokenData;