项目作者: ravern
项目描述 :
🤪 Flexible query string parser with support for nesting
高级语言: TypeScript
项目地址: git://github.com/ravern/qwuery.git
qwuery

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"] } } });