mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
34 lines
447 B
Plaintext
34 lines
447 B
Plaintext
""
|
|
"fo\"o"
|
|
"foo\
|
|
bar"
|
|
|
|
''
|
|
'fo\'o'
|
|
'foo\
|
|
bar'
|
|
|
|
@""
|
|
@"fo\"o"
|
|
@"foo\
|
|
bar"
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "\"\""],
|
|
["string", "\"fo\\\"o\""],
|
|
["string", "\"foo\\\r\nbar\""],
|
|
|
|
["string", "''"],
|
|
["string", "'fo\\'o'"],
|
|
["string", "'foo\\\r\nbar'"],
|
|
|
|
["string", "@\"\""],
|
|
["string", "@\"fo\\\"o\""],
|
|
["string", "@\"foo\\\r\nbar\""]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for strings. |