summaryrefslogtreecommitdiff
path: root/doc/api/url.md
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-04-27 17:11:55 -0700
committerJames M Snell <jasnell@gmail.com>2017-05-29 07:39:30 -0700
commit10754b60d0ab6956825b172baa8885e9ee15e151 (patch)
tree1a0764dca06c4c277cb1bf73b84d0e7927b4cb89 /doc/api/url.md
parent72785dd9d274cd1b8d91e019cd9d74072a7ba755 (diff)
downloadandroid-node-v8-10754b60d0ab6956825b172baa8885e9ee15e151.tar.gz
android-node-v8-10754b60d0ab6956825b172baa8885e9ee15e151.tar.bz2
android-node-v8-10754b60d0ab6956825b172baa8885e9ee15e151.zip
doc: graduate WHATWG URL from Experimental
PR-URL: https://github.com/nodejs/node/pull/12710 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Diffstat (limited to 'doc/api/url.md')
-rw-r--r--doc/api/url.md11
1 files changed, 2 insertions, 9 deletions
diff --git a/doc/api/url.md b/doc/api/url.md
index 7f2cc97b75..43402d634d 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -253,8 +253,6 @@ The formatting process operates as follows:
added: v7.6.0
-->
-> Stability: 1 - Experimental
-
* `URL` {URL} A [WHATWG URL][] object
* `options` {Object}
* `auth` {boolean} `true` if the serialized URL string should include the
@@ -290,9 +288,6 @@ console.log(url.format(myURL, {fragment: false, unicode: true, auth: false}));
// Prints 'https://你好你好?abc'
```
-*Note*: This variation of the `url.format()` method is currently considered to
-be experimental.
-
## url.parse(urlString[, parseQueryString[, slashesDenoteHost]])
<!-- YAML
added: v0.1.25
@@ -365,10 +360,8 @@ forward slash (`/`) character is encoded as `%3C`.
added: v7.0.0
-->
-> Stability: 1 - Experimental
-
-The `url` module provides an *experimental* implementation of the
-[WHATWG URL Standard][] as an alternative to the existing `url.parse()` API.
+The `url` module provides an implementation of the [WHATWG URL Standard][] as
+an alternative to the existing `url.parse()` API.
```js
const URL = require('url').URL;