URLSearchParams
open class URLSearchParams(init: ReadonlyArray<Tuple2<JsString, JsString>> = definedExternally) : ReadonlyMap<JsString, JsString> (source)
The URLSearchParams interface defines utility methods to work with the query string of a URL.
Properties
Functions
Link copied to clipboard
The get() method of the URLSearchParams interface returns the first value associated to the given search parameter.
Link copied to clipboard
The getAll() method of the URLSearchParams interface returns all the values associated with a given search parameter as an array.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The URLSearchParams.sort() method sorts all key/value pairs contained in this object in place and returns undefined. Key/value pairs are sorted by the values of the UTF-16 code units of the keys. This method uses a stable sorting algorithm (i.e., the relative order between key/value pairs with equal keys will be preserved).
Link copied to clipboard