Commit 5886b68e authored by wang's avatar wang

详细对比

parent 66d912dc
_getOwnPropertyNames = Object.getOwnPropertyNames;
Object.getOwnPropertyNames = function (a) {
let res = _getOwnPropertyNames(a);
console.log('getOwnPropertyNames', a, res)
con4('getOwnPropertyNames', a, res)
return res;
}
con4 = console.log
......@@ -30,7 +30,7 @@ Object.defineProperty = function (p, v, d) {
_join = Array.prototype.join;
Array.prototype.join = function (s){
let res = _join.call(this, s);
console.log('join', this, s, res)
con4('join', this, s, res)
return res;
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment