Skip to content

Commit

Permalink
remove space_colon (#1960)
Browse files Browse the repository at this point in the history
Always emit space after colon when `options.output.beautify` is enabled.
  • Loading branch information
alexlamsl committed May 17, 2017
1 parent baef8bf commit 87c3a2c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/output.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ function OutputStream(options) {
semicolons : true,
shebang : true,
source_map : null,
space_colon : true,
unescape_regexps : false,
width : 80,
wrap_iife : false,
Expand Down Expand Up @@ -357,7 +356,7 @@ function OutputStream(options) {

function colon() {
print(":");
if (options.space_colon) space();
space();
};

var add_mapping = options.source_map ? function(token, name) {
Expand Down

0 comments on commit 87c3a2c

Please sign in to comment.