debug_utils
debug_utils copied to clipboard
when an object add two accessor, and then remove one, something wrong
for example ` var a = {b:1, c:2}
$dusl(a, 'b')
$dusl(a, 'c')
$dugr(a, 'c')
console.log(a.c) //output 1, and it should be 2 `