diff options
author | Richard van Velzen <rvanvelzen1@gmail.com> | 2015-01-04 13:53:31 +0100 |
---|---|---|
committer | Richard van Velzen <rvanvelzen1@gmail.com> | 2015-01-04 13:53:31 +0100 |
commit | 66e6f0c3cb53c311655eb42d025a416c8bbef61a (patch) | |
tree | ea2dd7f3611715b4ff9abb75265a3053f4465995 | |
parent | f7447efa8ccfe73ba3792dc531505e56e6ced583 (diff) | |
parent | 39d8880f2cd17c9b96bf73a3bcd7c27a89cf919e (diff) | |
download | tracifyjs-66e6f0c3cb53c311655eb42d025a416c8bbef61a.tar.gz tracifyjs-66e6f0c3cb53c311655eb42d025a416c8bbef61a.zip |
Merge pull request #592 from micschro/patch-1
Fix max_line_len not working for JSON files
-rw-r--r-- | lib/output.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/output.js b/lib/output.js index 5a8f603c..7bca4dae 100644 --- a/lib/output.js +++ b/lib/output.js @@ -221,7 +221,7 @@ function OutputStream(options) { var newline = options.beautify ? function() { print("\n"); - } : noop; + } : maybe_newline; var semicolon = options.beautify ? function() { print(";"); |