big-json icon indicating copy to clipboard operation
big-json copied to clipboard

Support for Array

Open MichaelHirn opened this issue 6 years ago • 0 comments

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'}]

MichaelHirn avatar Jan 26 '20 17:01 MichaelHirn