Skip to content

Instantly share code, notes, and snippets.

@igstan
Created May 3, 2014 13:05
Show Gist options
  • Save igstan/3dbe8533a73c0409cec6 to your computer and use it in GitHub Desktop.
Save igstan/3dbe8533a73c0409cec6 to your computer and use it in GitHub Desktop.
// Dependency comes first when currying: OO-style constructors.
function foo(dependency) {
return function (a) {
return dependency(a);
}
}
// Dependency comes last when currying: Reader Monad.
function foo(a) {
return function (dependency) {
return dependency(a);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment