Useful service to beautify web-related code before analyze/editing.
Example:
from
// This is just a sample script. Paste your real code (javascript or HTML) here.
if ('this_is'==/an_example/){of_beautifer();}else{var a=b?(c%d):e[f];}
to:
// This is just a sample script. Paste your real code (javascript or HTML) here.
if ('this_is' == /an_example/) {
of_beautifer();
} else {
var a = b ? (c % d) : e[f];
}