Skip to main content
Module

x/opine/deps.ts>parse

Minimalist web framework for Deno ported from ExpressJS.
Latest
function parse
import { parse } from "https://deno.land/x/opine@2.3.4/deps.ts";

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

Parameters

str: string

The URL query string to parse

optional
sep = [UNSUPPORTED]

The substring used to delimit key and value pairs in the query string. Default: '&'.

optional
eq = [UNSUPPORTED]

The substring used to delimit keys and values in the query string. Default: '='.

optional
unnamed 3: ParseOptions = [UNSUPPORTED]

The parse options

Returns

ParsedUrlQuery