9 lines
215 B
React
9 lines
215 B
React
|
|
export function ParseJwt(token) {
|
||
|
|
if (!token) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
const base64Url = token.split(".")[1];
|
||
|
|
const base64 = base64Url.replace("-", "+").replace("_", "/");
|
||
|
|
return JSON.parse(window.atob(base64));
|
||
|
|
}
|