big-json
big-json copied to clipboard
Support for Array
Parsing the following array (string)
JSON.stringify([{key: 'value'}, {key: 'value'}])
will return
{ '0': { key: 'value' }, '1': { key: 'value' } }
but expected it to be
[{key: 'value'}, {key: 'value'}]