Skip to content

Instantly share code, notes, and snippets.

@CatTail
Created September 10, 2015 10:19
Show Gist options
  • Save CatTail/751ec42e6a4c0f56cad4 to your computer and use it in GitHub Desktop.
Save CatTail/751ec42e6a4c0f56cad4 to your computer and use it in GitHub Desktop.
Simple decorate function
function decorate(decorator, decorated, context) {
return function() {
decorated.apply(context, decorator.apply(this, arguments));
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment