mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 20:08:20 -07:00
26 lines
384 B
Plaintext
26 lines
384 B
Plaintext
'a'
|
|
'\u0041'
|
|
'\n'
|
|
'\t'
|
|
|
|
""
|
|
"fo\"obar"
|
|
|
|
"""fo"o
|
|
bar"""
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "'a'"],
|
|
["string", "'\\u0041'"],
|
|
["string", "'\\n'"],
|
|
["string", "'\\t'"],
|
|
["string", "\"\""],
|
|
["string", "\"fo\\\"obar\""],
|
|
["string", "\"\"\"fo\"o\r\nbar\"\"\""]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for characters and strings. |