debug_utils
debug_utils copied to clipboard
Advanced JavaScript Debugging Utility Library
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
or at least to warn/error/trace
maybe calling the function with the same args twice should remove, instead of adding an `r`.
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,...