summaryrefslogtreecommitdiff
path: root/doc/api/url.md
diff options
context:
space:
mode:
authorBryan English <bryan@bryanenglish.com>2016-05-04 22:52:42 -0700
committerAnna Henningsen <anna@addaleax.net>2016-05-09 13:46:09 +0200
commit43e4bafcaf1e40d62b4bbcd33ce8de946586e835 (patch)
tree66ffffaa065617597f9f12fa86c650f6e05657c1 /doc/api/url.md
parentf7730733384cc15e8e5c842e3e1771e6f917c188 (diff)
downloadandroid-node-v8-43e4bafcaf1e40d62b4bbcd33ce8de946586e835.tar.gz
android-node-v8-43e4bafcaf1e40d62b4bbcd33ce8de946586e835.tar.bz2
android-node-v8-43e4bafcaf1e40d62b4bbcd33ce8de946586e835.zip
doc: add `added:` information for url
Module introduced in 7ff04c1f8. Ref: https://github.com/nodejs/node/issues/6578 PR-URL: https://github.com/nodejs/node/pull/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>
Diffstat (limited to 'doc/api/url.md')
-rw-r--r--doc/api/url.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/api/url.md b/doc/api/url.md
index ab29c500d8..f8c2980bd5 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -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.
@@ -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.
@@ -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: