Skip to content

Instantly share code, notes, and snippets.

@choonkending
Last active June 7, 2017 01:03
Show Gist options
  • Save choonkending/532932f8cd3a1a2256b45e085beaca59 to your computer and use it in GitHub Desktop.
Save choonkending/532932f8cd3a1a2256b45e085beaca59 to your computer and use it in GitHub Desktop.
const getUserFromLocalStorage = keyName => {
const str = localStorage.getItem(keyName);
try {
return JSON.parse(str);
} catch (e) {
return "Invalid or Corrupted User Data";
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment