Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.28 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.28 KB

deno-qs

(CI tests on Linux)

Usage

A querystring parser with Deno based on querystring in NodeJS.

The querystring module provides utilities for parsing and formatting URL query strings. It can be accessed using:

import { qs } from "https://deno.land/x/qs/mod.ts";

const query = "a=b&foo=bar";
const json = { a: "b", foo: "bar" };

console.log(JSON.stringify(qs.parse(query)) == JSON.stringify(json)); // true

Run tests

deno test test.ts

Issues

For any bug reports or feature requests please post an issue on GitHub

Author

Jérémy Mathon Follow on GitHub

Matthieu Dumont Follow on GitHub