doc: graduate WHATWG URL from Experimental · nodejs/node@d080ead

@@ -253,8 +253,6 @@ The formatting process operates as follows:

253253

added: v7.6.0

254254

-->

255255256-

> Stability: 1 - Experimental

257-258256

* `URL` {URL} A [WHATWG URL][] object

259257

* `options` {Object}

260258

* `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}));

290288

// Prints 'https://你好你好?abc'

291289

```

292290293-

*Note*: This variation of the `url.format()` method is currently considered to

294-

be experimental.

295-296291

## url.parse(urlString[, parseQueryString[, slashesDenoteHost]])

297292

<!-- YAML

298293

added: v0.1.25

@@ -365,10 +360,8 @@ forward slash (`/`) character is encoded as `%3C`.

365360

added: v7.0.0

366361

-->

367362368-

> Stability: 1 - Experimental

369-370-

The `url` module provides an *experimental* implementation of the

371-

[WHATWG URL Standard][] as an alternative to the existing `url.parse()` API.

363+

The `url` module provides an implementation of the [WHATWG URL Standard][] as

364+

an alternative to the existing `url.parse()` API.

372365373366

```js

374367

const URL = require('url').URL;