mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
19 lines
322 B
Plaintext
19 lines
322 B
Plaintext
|
"f\"oo"
|
||
|
'f\'oo'
|
||
|
"foo\
|
||
|
bar"
|
||
|
'foo\
|
||
|
bar'
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["string", "\"f\\\"oo\""],
|
||
|
["string", "'f\\'oo'"],
|
||
|
["string", "\"foo\\\r\nbar\""],
|
||
|
["string", "'foo\\\r\nbar'"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for single-quoted and double-quoted strings.
|