Skip to content

Instantly share code, notes, and snippets.

@layonthebeech
Created September 1, 2016 23:21
Show Gist options
  • Save layonthebeech/a56377793a2f8c7f79ffb79c37218d11 to your computer and use it in GitHub Desktop.
Save layonthebeech/a56377793a2f8c7f79ffb79c37218d11 to your computer and use it in GitHub Desktop.
two function compose
function compose(f, g) {
return function() {
return f(g.apply(this, arguments));
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment