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
https://github.com/beautify-web/js-beautify/blob/master/js/lib/beautify-html.js#L527
input_char = this.input.charAt(this.pos); should be var input_char = this.input.charAt(this.pos);
input_char = this.input.charAt(this.pos);
var input_char = this.input.charAt(this.pos);
This breaks when used in a node app, and node is run with --use-strict flag.
--use-strict
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/beautify-web/js-beautify/blob/master/js/lib/beautify-html.js#L527
input_char = this.input.charAt(this.pos);
should be
var input_char = this.input.charAt(this.pos);
This breaks when used in a node app, and node is run with
--use-strict
flag.The text was updated successfully, but these errors were encountered: