Skip to content

Instantly share code, notes, and snippets.

@pfftdammitchris
Last active September 8, 2019 18:39
Show Gist options
  • Save pfftdammitchris/d83ac436d7e6c20635b516dc9cf31d8a to your computer and use it in GitHub Desktop.
Save pfftdammitchris/d83ac436d7e6c20635b516dc9cf31d8a to your computer and use it in GitHub Desktop.
function prepareCooking(cook) {
return function(egg1) {
return function(egg2) {
return function(egg3) {
// HERE
return function(egg4) {
return cook(egg1, egg2, egg3, egg4)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment