Skip to content
This repository was archived by the owner on Apr 14, 2020. It is now read-only.
/ qs Public archive

A querystring parser with nesting support

License

Notifications You must be signed in to change notification settings

denolib/qs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8b2944a · Mar 9, 2019

History

6 Commits
Feb 17, 2019
Feb 17, 2019
Dec 22, 2018
Mar 9, 2019
Mar 9, 2019
Dec 24, 2018
Mar 9, 2019
Mar 9, 2019
Mar 9, 2019
Mar 9, 2019
Mar 9, 2019
Mar 9, 2019
Dec 24, 2018
Mar 9, 2019

Repository files navigation

qs

DenoLib Build Status

A querystring parsing and stringifying library with some added security.

The qs module was ported from https://github.com/ljharb/qs

Usage

import { parse, stringify } from "https://denolib.com/denolib/qs/mod.ts";

const obj = parse("a=c"); // { a: "c" }
const str = stringify(obj); // a=c