debug proxy

This commit is contained in:
2019-02-18 10:29:37 +01:00
parent cc90b51a9b
commit 65d679c2f0
3 changed files with 10 additions and 10 deletions

View File

@@ -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);
};
}
});