Online javascript minify tools basically strip out comments and whitespace.
Is there a tool that can reverse this? Taking what is usually a single line of code:
function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}}
and auto-formatting it so you can begin reverse-engineering it?
function(){
var K=o.timers;
for(var J=0;J<K.length;J++){
if(!K[J]()){
K.splice(J--,1);
}
}
if(!K.length){
clearInterval(n);
n=g;
}
}