You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
js-beautify produces invalid code when beautifying code that has Unicode escape sequences in identifiers. "In the wild", I found it to break on code containing the following statement: var \u0053\u0074\u0072\u0069\u006e\u0067\u0033\u0034\u0035\u0036={...}.
A minimal test case is var \u0053, which should be left untouched but is instead transformed to var\ u0053.
The text was updated successfully, but these errors were encountered:
js-beautify produces invalid code when beautifying code that has Unicode escape sequences in identifiers. "In the wild", I found it to break on code containing the following statement:
var \u0053\u0074\u0072\u0069\u006e\u0067\u0033\u0034\u0035\u0036={...}
.A minimal test case is
var \u0053
, which should be left untouched but is instead transformed tovar\ u0053
.The text was updated successfully, but these errors were encountered: