W3cubDocs

/Deno

URLPatternResult

URLPatternResult is the object returned from URLPattern.exec.

interface URLPatternResult {
inputs: [URLPatternInit] | [URLPatternInit, string];
}

Properties

The matched result for the hash matcher.

The matched result for the hostname matcher.

inputs: [URLPatternInit] | [URLPatternInit, string]

The inputs provided when matching.

The matched result for the password matcher.

The matched result for the pathname matcher.

The matched result for the port matcher.

The matched result for the protocol matcher.

The matched result for the username matcher.