qs-stringify
v1.2.1
Published
Simple query stringify with nesting.
Downloads
157,085
Maintainers
Readme
qs-stringify
Simple query stringify with nesting.
Install
npm install qs-stringify
Usage
var stringify = require('qs-stringify')
stringify({
page: {
offset: 50,
limit: 25
},
filter: 'hello world'
})
// → "page[offset]=50&page[limit]=25&filter=hello%20world"