beautifier/js-beautify
Option unescape_strings can produce invalid string literals making JS invalid/uninterpretable
Aberta
#2.141 aberto em 17 de mar. de 2023
good first issuelanguage: javascripttype: bug
Métricas do repositório
- Stars
- (8.342 estrelas)
- Métricas de merge de PR
- (Mesclagem média 51d 1h) (16 fundiu PRs em 30d)
Description
Description
Option unescape_strings can produce invalid string literals making JS invalid/uninterpretable
Input
The code looked like this before beautification:
function () {
i.exports = "\t\n\x0B\f\r \u2028\u2029\ufeff"
}()
Expected Output
The code should have looked like this after beautification: code that does not contain invalid string literals
Actual Output
The code actually looked like this after beautification:
function () {
i.exports = "\t\n\x0B\f\r
"
}()
Steps to Reproduce
Environment
OS: Firefox/Win10
Settings
{
"unescape_strings": true,
}