From d7aad0d2d59da63f3544b6d2749fd32108df05dc Mon Sep 17 00:00:00 2001 From: James M Snell Date: Thu, 27 Apr 2017 17:11:55 -0700 Subject: [PATCH] doc: graduate WHATWG URL from Experimental --- doc/api/url.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/doc/api/url.md b/doc/api/url.md index 7f2cc97b75e986..43402d634d5c60 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]]) -> 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;