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
To reproduce, enter copy the following into jsbeautifier.org and set indent = 2 spaces, wrap lines near 80 columns:
var x = [110.41, 92.26, 109.94, 94.84, 109.51, 97.89, 109.12, 282.57, 139.57, 283.05, 139.71, 283.37, 140.00, 284.00, 170.59, 262.06, 171.84, 262.49, 173.45];
When you beautify this, it results in the following output:
var x = [110.41, 92.26, 109.94, 94.84, 109.51, 97.89, 109.12, 282.57, 139.57, 283.05, 139.71, 283.37, 140.00, 284.00, 170.59, 262.06, 171.84, 262.49, 173 .45];
Note the last number has been broken at the decimal point into "173" and ".45" on the next line (which is a syntax error).
The text was updated successfully, but these errors were encountered:
Wow, ugly. But should be an easy fix.
Sorry, something went wrong.
3e6be0b
No branches or pull requests
To reproduce, enter copy the following into jsbeautifier.org and set indent = 2 spaces, wrap lines near 80 columns:
When you beautify this, it results in the following output:
Note the last number has been broken at the decimal point into "173" and ".45" on the next line (which is a syntax error).
The text was updated successfully, but these errors were encountered: