Skip to content

Instantly share code, notes, and snippets.

@purplefeel
Created February 14, 2019 05:15
Show Gist options
  • Save purplefeel/471c4ebdb42d53979d53fda5bffff672 to your computer and use it in GitHub Desktop.
Save purplefeel/471c4ebdb42d53979d53fda5bffff672 to your computer and use it in GitHub Desktop.
parseJwt = (token: String) => {
var base64Url = token.split('.')[1];
var base64 = base64Url.replace('-', '+').replace('_', '/');
return JSON.parse(window.atob(base64));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment