Skip to content

Instantly share code, notes, and snippets.

@jrsinclair
Created December 5, 2018 22:14
Show Gist options
  • Save jrsinclair/02994518f1b5ff50276818ec32f0d613 to your computer and use it in GitHub Desktop.
Save jrsinclair/02994518f1b5ff50276818ec32f0d613 to your computer and use it in GitHub Desktop.
Elegant Error Handling Code Samples
function liftA2(func) {
return function runApplicativeFunc(a, b) {
return b.ap(a.map(func));
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment