mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
23 lines
345 B
Plaintext
23 lines
345 B
Plaintext
""
|
|
"fo\"obar"
|
|
"foo\
|
|
bar"
|
|
''
|
|
'fo\'obar'
|
|
'foo\
|
|
bar'
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "\"\""],
|
|
["string", "\"fo\\\"obar\""],
|
|
["string", "\"foo\\\r\nbar\""],
|
|
["string", "''"],
|
|
["string", "'fo\\'obar'"],
|
|
["string", "'foo\\\r\nbar'"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for strings. |