Abstract
Constructs search parameters.
Either a string containing parameters to parse (a prefix symbol is ignored), an iterable of key/value pairs representing string parameter values, or a record of string keys and string values.
Parser of parameter charges.
Static
splitterSearch parameters splitter.
Splits parameters separated by "&" (U+0026)
symbol by default.
Obtains positional argument.
The very first parameter is treated as positional argument unless it contains an equals sign (= (U+003D)
),
i.e. the first named parameter name and value.
Iterates over all key/value pairs contained in this object. The key and value of each pair are string objects.
The same as entries.
An iterable iterator of parameter name/value pairs in order of their appearance.
Iterates over all values contained in this object via a callback function.
Function to execute on each element. Accepts parameter name, string parameter value, and this
instance as arguments.
Builds a query string.
The string containing parameters joined with joiner symbol.
Generated using TypeDoc
Abstract parameters of charged URI. A base class for search parameters, matrix parameters, and hash parameters.
Resembles standard URLSearchParams class in its read-only part.