mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 20:08:20 -07:00
24 lines
421 B
Plaintext
24 lines
421 B
Plaintext
|
""
|
||
|
''
|
||
|
"f\"oo"
|
||
|
'b\'ar'
|
||
|
"foo\
|
||
|
bar"
|
||
|
'foo\
|
||
|
bar'
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["string", "\"\""],
|
||
|
["string", "''"],
|
||
|
["string", "\"f\\\"oo\""],
|
||
|
["string", "'b\\'ar'"],
|
||
|
["string", "\"foo\\\r\nbar\""],
|
||
|
["string", "'foo\\\r\nbar'"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for empty strings, single-line strings and
|
||
|
multi-line strings, both single-quoted and double-quoted.
|