Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Path

The pathname, search, and hash values of a URL.

interface Path {
hash: string;
pathname: string;
search: string;
}

§Properties

§
hash: string
[src]

A URL fragment identifier, beginning with a #.

§
pathname: string
[src]

A URL pathname, beginning with a /.