Skip to content

Instantly share code, notes, and snippets.

@lambdatastic
Created November 15, 2016 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lambdatastic/84d48ef57870a45c5c7e53c07b3b1415 to your computer and use it in GitHub Desktop.
Save lambdatastic/84d48ef57870a45c5c7e53c07b3b1415 to your computer and use it in GitHub Desktop.
Random snippets
function(key, options) {
// random stuff
return function(dispatch) {
// other things
}
}
// is equal to
curry(
function(key, options, dispatch) {
// random stuff
// other stuff
}
)
// the second feels cleaner to me
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment