deno / latest / ~ / urlpatternresult.html

URLPatternResult

URLPatternResult is the object returned from URLPattern.exec.

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

Properties

hash: URLPatternComponentResult

The matched result for the hash matcher.

hostname: URLPatternComponentResult

The matched result for the hostname matcher.

inputs: [URLPatternInit] | [URLPatternInit, string]

The inputs provided when matching.

password: URLPatternComponentResult

The matched result for the password matcher.

pathname: URLPatternComponentResult

The matched result for the pathname matcher.

port: URLPatternComponentResult

The matched result for the port matcher.

protocol: URLPatternComponentResult

The matched result for the protocol matcher.

username: URLPatternComponentResult

The matched result for the username matcher.