debug proxy
This commit is contained in:
@@ -178,10 +178,10 @@
|
||||
return target[property];
|
||||
}
|
||||
return function () {
|
||||
var args = [].slice.call(arguments, 0);
|
||||
return function (object, property, args) {
|
||||
console.log("noSuchMethod", object, property, args);
|
||||
}(object, property, args)
|
||||
var targs = [].slice.call(arguments, 0);
|
||||
return function noSuchMethod(object, props, args) {
|
||||
console.log("noSuchMethod", object, props, args);
|
||||
}(target, property, targs);
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user