Flexible query string parser with support for nesting.
# Install through NPM
$ npm install --save qwuery
import * as qwuery from "qwuery";
const query = qweury.decode("?one[two][three]=one,two");
expect(query).toEqual({ one: { two: { three: ["one", "two"] } } });