Skip to content

Instantly share code, notes, and snippets.

@choonkending
Last active June 7, 2017 00:57
Show Gist options
  • Save choonkending/58fdd75c9637764e3bc1e5934002fcbd to your computer and use it in GitHub Desktop.
Save choonkending/58fdd75c9637764e3bc1e5934002fcbd to your computer and use it in GitHub Desktop.
const transformCage = () => { /* ... */ };
const handleError = e => "Invalid or Corrupted User Data";
const handleSuccess = data => "Success";
const doSomethingWithUserData = () =>
getUserFromLocalStorage('nickCage')
.map(transformCage)
.fold(handleError, handleSuccess);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment