I added some third party js code to my project and problem is when I try to debug my js files, chrome pauses on third party js code. Is there any way to disable debugger lines?
data.info= getInfo();
debugger; //like this lines
process(data.info);
I added some third party js code to my project and problem is when I try to debug my js files, chrome pauses on third party js code. Is there any way to disable debugger lines?
data.info= getInfo();
debugger; //like this lines
process(data.info);