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
deno test test.ts
For any bug reports or feature requests please post an issue on GitHub