Skip to content

Commit

Permalink
doc: add added: information for url
Browse files Browse the repository at this point in the history
Module introduced in 7ff04c1.

Ref: #6578
PR-URL: #6593
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
bengl authored and Myles Borins committed Jul 12, 2016
1 parent c3801bb commit fa2e987
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doc/api/url.md
Expand Up @@ -80,6 +80,9 @@ properties of URL objects:
The following methods are provided by the URL module:

## url.format(urlObj)
<!-- YAML
added: v0.1.25
-->

Take a parsed URL object, and return a formatted URL string.

Expand All @@ -106,6 +109,9 @@ Here's how the formatting process works:
* `hash` is treated the same with or without the leading `#` (pound sign, anchor).

## url.parse(urlStr[, parseQueryString][, slashesDenoteHost])
<!-- YAML
added: v0.1.25
-->

Take a URL string, and return an object.

Expand All @@ -120,6 +126,9 @@ Pass `true` as the third argument to treat `//foo/bar` as
`{ pathname: '//foo/bar' }`. Defaults to `false`.

## url.resolve(from, to)
<!-- YAML
added: v0.1.25
-->

Take a base URL, and a href URL, and resolve them as a browser would for
an anchor tag. Examples:
Expand Down

0 comments on commit fa2e987

Please sign in to comment.