formatter.format(
new BufferedReader(new StringReader(code)), new PrintWriter(out, true)
);
JSBeautifier beautifier = new JSBeautifier();
code = this.getString(out, encoding);
out = new ByteArrayOutputStream(code.length());
beautifier.setSpaceIndentation(SPACE_INDENTATION);
beautifier.beautifyReader(
new BufferedReader(new StringReader(code)), new PrintWriter(out, true)
);
return this.getString(out, encoding);
} catch (Exception e) {