Skip to content
This repository was archived by the owner on Dec 17, 2022. It is now read-only.
/ qwuery Public archive

Flexible query string parser with support for nesting

Notifications You must be signed in to change notification settings

ravern/qwuery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Flexible query string parser with support for nesting

Topics

Resources

Stars

Watchers

Forks