Skip to main content

parse

method URL.parse
Jump to headingURL.parse(
input: string,
base?: string,
): URL | null

Parses a string as a URL. If base is provided, it will be used as the base URL for the purpose of resolving non-absolute input URLs. Returns null if input is not a valid.

Parameters Jump to heading

Jump to headinginput: string

The absolute or relative input URL to parse. If input is relative, then base is required. If input is absolute, the base is ignored. If input is not a string, it is converted to a string first.

optional
Jump to headingbase: string

The base URL to resolve against if the input is not absolute. If base is not a string, it is converted to a string first.

Return Type Jump to heading

URL | null
Back to top