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
Jsonlint does not parse strings with unicode escape characters correctly. Instead of parsing the unicode \uXXXX it's escaping it, so the resulting string is wrong.
e.g.: parsing '{\n"name": "\\u30d0\\u30b0"\n}\n' results in { name: '\\u30d0\\u30b0' } but should be { name: '\u30d0\u30b0' }
Jsonlint does not parse strings with unicode escape characters correctly. Instead of parsing the unicode
\uXXXX
it's escaping it, so the resulting string is wrong.e.g.: parsing
'{\n"name": "\\u30d0\\u30b0"\n}\n'
results in{ name: '\\u30d0\\u30b0' }
but should be{ name: '\u30d0\u30b0' }
Here is the code to reproduce the error:
The text was updated successfully, but these errors were encountered: