Skip to content

Instantly share code, notes, and snippets.

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