Is there anyway to ignore 3rd party javascript when debugging?
I use lots of 3rd party libraries in my javascript code, and would like to completely ignore them when debugging. Why? Because I'd prefer to assume that they work as intended, and stepping into their code (or having to navigate the call stack for their functions) isn't necessary 99% of the time - most of the time the code I want to debug is my own code - not theirs!
I specifically am using Chrome most of the time when debugging, but am totally willing to switch to something else if this capability was available!