URLPatternResult
URLPatternResult
is the object returned from URLPattern.exec
.
interface URLPatternResult {
hash: URLPatternComponentResult;
hostname: URLPatternComponentResult;
inputs: [URLPatternInit] | [URLPatternInit, string];
password: URLPatternComponentResult;
pathname: URLPatternComponentResult;
port: URLPatternComponentResult;
protocol: URLPatternComponentResult;
search: URLPatternComponentResult;
username: URLPatternComponentResult;
}§Properties
§
The matched result for the hash
matcher.
§
hostname: URLPatternComponentResult
[src]The matched result for the hostname
matcher.
§
inputs: [URLPatternInit] | [URLPatternInit, string]
[src]The inputs provided when matching.
§
password: URLPatternComponentResult
[src]The matched result for the password
matcher.
§
pathname: URLPatternComponentResult
[src]The matched result for the pathname
matcher.
§
The matched result for the port
matcher.
§
protocol: URLPatternComponentResult
[src]The matched result for the protocol
matcher.
§
search: URLPatternComponentResult
[src]The matched result for the search
matcher.
§
username: URLPatternComponentResult
[src]The matched result for the username
matcher.