unminify

Online Tool to Unminify / Decompress JavaScript

Are there any scripts and/or online tools that can reverse the effects of minification similar to how Tidy can clean up horrific HTML? I'm specifically looking to unminify a minified JavaScript file, so variable renaming (like with compression or packing) should theoretically not be an issue. ...

Tool to reverse Javascript minify?

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-engine...