mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
18 lines
282 B
Lua
18 lines
282 B
Lua
local JSON_STRING = [[{"Foo":"Bar","Hello":"World","Inner":{"Array":[1,3,2]}}]]
|
|
|
|
local JSON_STRING_PRETTY = [[{
|
|
"Foo": "Bar",
|
|
"Hello": "World",
|
|
"Inner": {
|
|
"Array": [
|
|
1,
|
|
3,
|
|
2
|
|
]
|
|
}
|
|
}]]
|
|
|
|
return {
|
|
encoded = JSON_STRING,
|
|
pretty = JSON_STRING_PRETTY,
|
|
}
|