0.0.4 • Published 6 years ago

qwuery v0.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

qwuery

TravisCI

Flexible query string parser with support for nesting.

Installation

# Install through NPM
$ npm install --save qwuery

Usage

import * as qwuery from "qwuery";

const query = qweury.decode("?one[two][three]=one,two");
expect(query).toEqual({ one: { two: { three: ["one", "two"] } } });