Lightweight isomorphic querystring parser.
npm install mini-querystringLight weight, universal, query string parser for node and the browser with support for nested properties.
Checkout q-set and q-flat (used internally) for more info on nested query string parsing and stringifying.
``console`
npm install mini-querystring
`javascript
import { parse, stringify } from 'mini-querystring'
// Parse standard query string.
parse('a=1&b=2&') / { a: '1', b: '2' } /
// Parse nested query string.
parse('a=1&b[c]=2', true) / { a: '1', b: { c: '1' } } /
// Stringify standard object.
stringify({ a: 1 }) / 'a=1' /
// Stringify nested object.
stringify({ a: { b: 1 } }, true) /* 'a[b]=1'
`
* Use npm test` to build and run tests.
Please feel free to create a PR!