We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before:
function test() { return true; } //bla
After:
Note: I have temporarily 'solved' this problem in the beautify.js source handle_comment function, yet might have introduced another one :
function handle_comment() { if (current_token.wanted_newline) { print_newline(false, false); /*instead of print_newline(false, true)*/
The text was updated successfully, but these errors were encountered:
Yeah, that will probably break a few other things. But It's good to know this works.
Sorry, something went wrong.
function foo() { var x; } function bar() { var y; } // end bar function baz() { var z; }
beautifies to
This is not cooperating. Punting to 1.6.0.
f8dcef1
No branches or pull requests
Before:
After:
Note: I have temporarily 'solved' this problem in the beautify.js source handle_comment function, yet might have introduced another one :
The text was updated successfully, but these errors were encountered: