js-beautify
js-beautify copied to clipboard
Variables with escaped unicode characters are not recognized
Description
The beautifier doesn't seem to recognize variables with unicode names. The input is a valid JavaScript code, but the output is not.
Input
var \u040F = Џ;
Expected Output
var \u040F = Џ;
Actual Output
var\ u040F = Џ;