debug_utils icon indicating copy to clipboard operation
debug_utils copied to clipboard

Advanced JavaScript Debugging Utility Library

Results 6 debug_utils issues
Sort by recently updated
recently updated
newest added

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 `

see https://github.com/amasad/debug_utils/issues/11 for discussion

maybe calling the function with the same args twice should remove, instead of adding an `r`.

enhancement

Allows an arbitrary callback to be invoked prior to the real method executing. I added this out of a desire to log a custom message when the method is invoked,...