Skip to content

Instantly share code, notes, and snippets.

@alvieirajr
Created July 13, 2016 13:15
Show Gist options
  • Save alvieirajr/6e8dcc9ad7e90047546ef35b59c4c36e to your computer and use it in GitHub Desktop.
Save alvieirajr/6e8dcc9ad7e90047546ef35b59c4c36e to your computer and use it in GitHub Desktop.
var compose = function(f, g) {
return function() {
return f.call(this, g.apply(this, arguments));
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment