Package-level declarations

Types

Link copied to clipboard
open class URL(url: String, base: String = definedExternally)

The URL interface is used to parse, construct, normalize, and encode URLs. It works by providing properties which allow you to easily read and modify the components of a URL.

Link copied to clipboard
open class URLPattern(input: String, baseURL: String, options: URLPatternOptions = definedExternally)

The URLPattern interface of the URL Pattern API matches URLs or parts of URLs against a pattern. The pattern can contain capturing groups that extract parts of the matched URL.

Link copied to clipboard
Link copied to clipboard
interface URLPatternInit
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open class URLSearchParams(init: ReadonlyArray<Tuple2<JsString, JsString>> = definedExternally) : ReadonlyMap<JsString, JsString>

The URLSearchParams interface defines utility methods to work with the query string of a URL.