Beautifier for javascript
Go to file
Einar Lielmanis 4cb412bc09 Restore correct indentation after multiline var.
var_line_reindented flag was not removed, when the var-statement finished, resulting in an erroneous indent, e.g:

(function () {
    var Y = YAHOO,
        yue = yut.Event;
    Y.T = function (a) {
            this.init(a); // <<<<<
        };                // <<<<<
    // some things...
})();
2010-05-06 18:31:19 +03:00
bin beaufify_js script updates by Gabriel Harrison 2009-11-27 04:54:21 +02:00
tests Restore correct indentation after multiline var. 2010-05-06 18:31:19 +03:00
unmaintained Moved unmaintained creatures off the main branch 2009-08-19 17:21:24 +03:00
unpackers Maintenance, moving the code around. 2010-03-16 01:24:38 +02:00
beautify-cl.js Add experimental brace-on-own-line support. Yes. 2010-03-19 18:20:46 +02:00
beautify-html.js Maintenance, moving the code around. 2010-03-16 01:24:38 +02:00
beautify.js Restore correct indentation after multiline var. 2010-05-06 18:31:19 +03:00
index.html Add experimental brace-on-own-line support. Yes. 2010-03-19 18:20:46 +02:00
license.txt I just wanted a nicer commit message here. 2009-12-12 12:49:34 +02:00
readme.txt Add missing surname to Vital Batmanov as well 2010-03-16 01:32:28 +02:00

 JS Beautifier
---------------

  ...or, more specifically, all of the code powering jsbeautifier.org.

  This little beautifier will reformat and reindent bookmarklets, ugly
  javascript, unpack scripts packed by the popular Dean Edward's packer,
  as well as deobfuscate scripts processed by javascriptobfuscator.com.

  You are free to use this in any way you want, in case you find this
  useful or working for you.

  To beautify from the command-line you can use provided beautify-cl.js
  script, using Rhino javascript engine. See the file contents for the
  details.


  Written by Einar Lielmanis, <einar@jsbeautifier.org>

  Thanks to Jason Diamond, Patrick Hof, Nochum Sossonko, Andreas Schneider,
  Dave Vasilevsky, Vital Batmanov, Ron Baldwin, Gabriel Harrison and others.