Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denolib/qs
A querystring parser with nesting support
https://github.com/denolib/qs
Last synced: 5 days ago
JSON representation
A querystring parser with nesting support
- Host: GitHub
- URL: https://github.com/denolib/qs
- Owner: denolib
- License: other
- Archived: true
- Created: 2018-12-22T07:07:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-09T01:29:26.000Z (over 5 years ago)
- Last Synced: 2024-08-02T10:20:35.033Z (4 months ago)
- Language: TypeScript
- Size: 38.1 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-deno - qs - 支持嵌套的querystring解析器。 (Uncategorized / Uncategorized)
- awesome-deno-cn - @denolib/qs
- awesome-deno - qs - A querystring parser with nesting support. (Libraries)
- awesome-deno - qs - A query string parser with nesting support.![GitHub stars](https://img.shields.io/github/stars/denolib/qs?style=plastic) (Modules / Online Playgrounds)
- awesome-deno - qs - A query string parser with nesting support. (Modules / Web utils)
README
# qs
![DenoLib](https://denolib.com/badge?scope=denolib&repo=qs)
[![Build Status](https://img.shields.io/travis/denolib/qs.svg)](https://travis-ci.org/denolib/qs)A querystring parsing and stringifying library with some added security.
The **qs** module was ported from https://github.com/ljharb/qs
## Usage
```ts
import { parse, stringify } from "https://denolib.com/denolib/qs/mod.ts";const obj = parse("a=c"); // { a: "c" }
const str = stringify(obj); // a=c
```