mirror of
https://github.com/wader/fq.git
synced 2024-11-24 11:16:09 +03:00
cae288e6be
json, yaml, toml, xml, html, csv are now normal formats and most of them also particiate in probing (not html and csv). Also fixes a bunch of bugs in to/fromxml, to/fromjq etc.
22 lines
390 B
JSON
22 lines
390 B
JSON
[
|
|
null,
|
|
true,
|
|
false,
|
|
123,
|
|
123.123,
|
|
"string",
|
|
[1, 2, 3],
|
|
{
|
|
"array": [ true, false, null, 1.2, "string", [1.2, 3], {"a": 1} ],
|
|
"escape \\\"": 456,
|
|
"false": false,
|
|
"null": null,
|
|
"number": 1.2,
|
|
"object": {"a": 1},
|
|
"string": "string",
|
|
"true": true,
|
|
"white space": 123
|
|
},
|
|
[],
|
|
{}
|
|
] |