-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update outputs. * Refine spaces. * Restore missing part. PR-URL: #13288 Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
- Loading branch information
1 parent
cc3174a
commit c2d7b41
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ that an effort will be made to coerce the given values into strings. For | |
instance: | ||
|
||
```js | ||
const myURL = new URL({toString: () => 'https://example.org/'}); | ||
const myURL = new URL({ toString: () => 'https://example.org/' }); | ||
// https://example.org/ | ||
``` | ||
|
||
|
@@ -186,6 +186,7 @@ console.log(myURL.href); | |
// Prints https://example.org/foo | ||
|
||
myURL.href = 'https://example.com/bar'; | ||
console.log(myURL.href); | ||
// Prints https://example.com/bar | ||
``` | ||
|
||
|
@@ -332,7 +333,7 @@ console.log(myURL.protocol); | |
|
||
myURL.protocol = 'ftp'; | ||
console.log(myURL.href); | ||
// Prints ftp://example.org | ||
// Prints ftp://example.org/ | ||
``` | ||
|
||
Invalid URL protocol values assigned to the `protocol` property are ignored. | ||
|
@@ -380,7 +381,7 @@ console.log(myURL.username); | |
|
||
myURL.username = '123'; | ||
console.log(myURL.href); | ||
// Prints https://123:[email protected] | ||
// Prints https://123:[email protected]/ | ||
``` | ||
|
||
Any invalid URL characters appearing in the value assigned the `username` | ||
|
@@ -515,7 +516,7 @@ const params = new URLSearchParams({ | |
query: ['first', 'second'] | ||
}); | ||
console.log(params.getAll('query')); | ||
// Prints ['first,second'] | ||
// Prints [ 'first,second' ] | ||
console.log(params.toString()); | ||
// Prints 'user=abc&query=first%2Csecond' | ||
``` | ||
|
@@ -571,7 +572,8 @@ console.log(params.toString()); | |
new URLSearchParams([ | ||
['user', 'abc', 'error'] | ||
]); | ||
// Throws TypeError: Each query pair must be a name/value tuple | ||
// Throws TypeError [ERR_INVALID_TUPLE]: | ||
// Each query pair must be an iterable [name, value] tuple | ||
``` | ||
|
||
#### urlSearchParams.append(name, value) | ||
|
@@ -816,8 +818,8 @@ console.log(myURL.href); | |
console.log(myURL.toString()); | ||
// Prints https://a:b@xn--6qqa088eba/?abc#foo | ||
|
||
console.log(url.format(myURL, {fragment: false, unicode: true, auth: false})); | ||
// Prints 'https://你好你好?abc' | ||
console.log(url.format(myURL, { fragment: false, unicode: true, auth: false })); | ||
// Prints 'https://你好你好/?abc' | ||
``` | ||
|
||
## Legacy URL API | ||
|