UglifyJS/test/compress/ascii_only.js
2015-09-10 14:11:15 -06:00

20 lines
361 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

prevents_unicode_escape_sequences_from_being_converted: {
options = {ascii_only: true};
input: {
var a = "\u2000";
}
expect: {
var a = "\u2000";
}
}
converts_unicode_characters_to_escape_sequences: {
options = {ascii_only: true};
input: {
var a = " ";
}
expect: {
var a = "\u2000";
}
}