parallaxis/node_modules/json/test/stream-flat-array-input
Rob Canning 136e1459b7 moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
..
dir moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
README.md moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
arrays-complex.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
arrays-on-same-line-fail.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
arrays-surprise-string.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
arrays.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
cmd moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
expected.stderr moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
expected.stdout moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
mixed-objects-and-arrays.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
objects-complex.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
objects-on-same-line-fail.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
objects-on-same-line.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
objects.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
one.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00
two.input moving old projects from cold storage to git for possible revival 2023-12-06 12:05:01 +01:00

README.md

Test handling of a grouping adjacent objects into an array:

$ echo '{"one": 1}{"two": 1}' | json -g
[
  {
    "one": 1
  },
  {
    "two": 1
  }
]