ljharb/qs

stringify, request supporting 'dot' as option for arrayFormat

Open

#516 geöffnet am 1. Nov. 2024

Auf GitHub ansehen
 (3 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)JavaScript (8.015 Stars) (744 Forks)batch import
feature requesthelp wantedstringify

Beschreibung

parse can successfully convert 'a.0.name=test&a.0.number=5&a.1.name=test2&a.1.number=6' to:

{ a: [ { name: 'test', number: '5'}, { name: 'test2', number: '6' }] }

so it would be great if there were a stringify option that could convert the object back into the original dot notation.

Contributor Guide