The expected result of qs.parse('a=1.2&b[0].c=3') should be
{ a: '1.2', 'b[0].c': '3' }
In fact we get
{ a: '1.2', b: { '0].': '3' } }
Just for a note, stringify works well
> qs.stringify({ a: '1.2', 'b[0].c': '3' })
'a=1.2&b%5B0%5D.c=3'
Reactions are currently unavailable
The expected result of qs.parse('a=1.2&b[0].c=3') should be
In fact we get
Just for a note, stringify works well
> qs.stringify({ a: '1.2', 'b[0].c': '3' }) 'a=1.2&b%5B0%5D.c=3'