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
Within a double-quoted string (enclosed within " "), a backslash
character introduces a representation of a special character, which
depends on the character that immediately follows the backslash:
\n newline
\t a tab character
\" a double quote
\\ a single backslash
The backslash MUST NOT be followed by any other character.
Expected
the following double quoted string: a\nb\nc should be translated to:
a
b
c
Actual
The contents of the token is: a\nb\nc
The text was updated successfully, but these errors were encountered:
rfc-6.1.3:
Expected
the following double quoted string:
a\nb\nc
should be translated to:Actual
The contents of the token is:
a\nb\nc
The text was updated successfully, but these errors were encountered: