Skip to main content
Module

std/node/querystring.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.145.0/node/querystring.ts";

Variables

Alias of querystring.parse()

Alias of querystring.stringify()

Performs URL percent-encoding on the given str in a manner that is optimized for the specific requirements of URL query strings. Used by querystring.stringify() and is generally not expected to be used directly. It is exported primarily to allow application code to provide a replacement percent-encoding implementation if necessary by assigning querystring.escape to an alternative function.

Performs decoding of URL percent-encoded characters on the given str. Used by querystring.parse() and is generally not expected to be used directly. It is exported primarily to allow application code to provide a replacement decoding implementation if necessary by assigning querystring.unescape to an alternative function.

Functions

Parses a URL query string into a collection of key and value pairs.

Produces a URL query string from a given obj by iterating through the object's "own properties".

A safe fast alternative to decodeURIComponent