Open coolaj86 opened 12 years ago
--- - "baz" - "qux" - "quxx" - null - true - foo: "bar" corge: null grault: 1 garply: true waldo: "false" fred: "undefined" - 42 - - - "hello" - "world"
and becomes
[ "baz", "qux", "quxx", null, true, { "foo": "bar", "corge": null, "grault": 1, "garply": true, "waldo": "false", "fred": "undefined" }, 42, [ [ "hello", "world" ] ] ]
--- - "baz" - "qux" - "quxx" - null - true - foo: "bar" corge: null grault: 1 garply: true waldo: "false" fred: "undefined" - - "hello" - "world" - 42 -
[ "baz", "qux", "quxx", null, true, { "foo": "bar", "corge": null, "grault": 1, "garply": true, "waldo": "false", "fred": "undefined" }, [ "hello", "world" ], 42, null ]
Unexpected Nesting
and becomes
Expected Behavior
and becomes