Skip to content

Instantly share code, notes, and snippets.

@wsagen
Last active January 4, 2016 21:29
Show Gist options
  • Select an option

  • Save wsagen/8681782 to your computer and use it in GitHub Desktop.

Select an option

Save wsagen/8681782 to your computer and use it in GitHub Desktop.
Override prototype javascript object or function
Packaging.prototype.sendCreateLabelRequest = Packaging.prototype.sendCreateLabelRequest.wrap(function(parentMethod){
//replace the original method here with your own stuff
console.log('we have overridden their function');
parentMethod();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment