Skip to content

Instantly share code, notes, and snippets.

@Arkotek
Created May 2, 2016 09:50
Show Gist options
  • Save Arkotek/06930e7348e45ce3e1a0c420b2af7ef0 to your computer and use it in GitHub Desktop.
Save Arkotek/06930e7348e45ce3e1a0c420b2af7ef0 to your computer and use it in GitHub Desktop.
var Toto = function() {
};
Toto.prototype.test = function() {
};
var wrappedClass = new Proxy(Toto, {
get : function(o, method_name) {
console.log(o, method_name);
return function() {
console.log('Alright');
}
}
});
wrappedClass.yes();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment