mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
29 lines
476 B
Plaintext
29 lines
476 B
Plaintext
""
|
|
"fo\"o"
|
|
'x'
|
|
'\''
|
|
'\u2200'
|
|
"""foo"""
|
|
"""fo"o
|
|
bar"""
|
|
'''foo'''
|
|
'''fo'o
|
|
bar'''
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "\"\""],
|
|
["string", "\"fo\\\"o\""],
|
|
["string", "'x'"],
|
|
["string", "'\\''"],
|
|
["string", "'\\u2200'"],
|
|
["string", "\"\"\"foo\"\"\""],
|
|
["string", "\"\"\"fo\"o\r\nbar\"\"\""],
|
|
["string", "'''foo'''"],
|
|
["string", "'''fo'o\r\nbar'''"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for strings and characters. |