| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6bc2707 commit 9e29416
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -322,7 +322,7 @@ added: | |||
| 322 | 322 | - v20.12.0 | |
| 323 | 323 | --> | |
| 324 | 324 | ||
| 325 | - Similar to [`sea.getAsset()`][], but returns the result in a [`Blob`][]. | ||
| 325 | + Similar to [`sea.getAsset()`][], but returns the result in a {Blob}. | ||
| 326 | 326 | An error is thrown when no matching asset can be found. | |
| 327 | 327 | ||
| 328 | 328 | * `key` {string} the key for the asset in the dictionary specified by the | |
@@ -423,7 +423,6 @@ to help us document them. | |||
| 423 | 423 | [Mach-O]: https://en.wikipedia.org/wiki/Mach-O | |
| 424 | 424 | [PE]: https://en.wikipedia.org/wiki/Portable_Executable | |
| 425 | 425 | [Windows SDK]: https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/ | |
| 426 | - [`Blob`]: https://developer.mozilla.org/en-US/docs/Web/API/Blob | ||
| 427 | 426 | [`process.execPath`]: process.md#processexecpath | |
| 428 | 427 | [`require()`]: modules.md#requireid | |
| 429 | 428 | [`require.main`]: modules.md#accessing-the-main-module | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -956,7 +956,7 @@ added: | |||
| 956 | 956 | * `iterable` {Iterable} An iterable object whose elements are key-value pairs | |
| 957 | 957 | ||
| 958 | 958 | Instantiate a new `URLSearchParams` object with an iterable map in a way that | |
| 959 | - is similar to [`Map`][]'s constructor. `iterable` can be an `Array` or any | ||
| 959 | + is similar to {Map}'s constructor. `iterable` can be an `Array` or any | ||
| 960 | 960 | iterable object. That means `iterable` can be another `URLSearchParams`, in | |
| 961 | 961 | which case the constructor will simply create a clone of the provided | |
| 962 | 962 | `URLSearchParams`. Elements of `iterable` are key-value pairs, and can | |
@@ -1951,7 +1951,6 @@ console.log(myURL.origin); | |||
| 1951 | 1951 | [WHATWG URL Standard]: https://url.spec.whatwg.org/ | |
| 1952 | 1952 | [`Error`]: errors.md#class-error | |
| 1953 | 1953 | [`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify | |
| 1954 | - [`Map`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map | ||
| 1955 | 1954 | [`TypeError`]: errors.md#class-typeerror | |
| 1956 | 1955 | [`URLSearchParams`]: #class-urlsearchparams | |
| 1957 | 1956 | [`array.toString()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toString | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1139,8 +1139,8 @@ Creates and returns a new [`Unzip`][] object. | |||
| 1139 | 1139 | ||
| 1140 | 1140 | <!--type=misc--> | |
| 1141 | 1141 | ||
| 1142 | - All of these take a [`Buffer`][], [`TypedArray`][], [`DataView`][], | ||
| 1143 | - [`ArrayBuffer`][] or string as the first argument, an optional second argument | ||
| 1142 | + All of these take a {Buffer}, {TypedArray}, {DataView}, {ArrayBuffer}, or string | ||
| 1143 | + as the first argument, an optional second argument | ||
| 1144 | 1144 | to supply options to the `zlib` classes and will call the supplied callback | |
| 1145 | 1145 | with `callback(error, result)`. | |
| 1146 | 1146 | ||
@@ -1488,19 +1488,15 @@ Decompress a chunk of data with [`Unzip`][]. | |||
| 1488 | 1488 | [Streams API]: stream.md | |
| 1489 | 1489 | [`.flush()`]: #zlibflushkind-callback | |
| 1490 | 1490 | [`Accept-Encoding`]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3 | |
| 1491 | - [`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer | ||
| 1492 | 1491 | [`BrotliCompress`]: #class-zlibbrotlicompress | |
| 1493 | 1492 | [`BrotliDecompress`]: #class-zlibbrotlidecompress | |
| 1494 | - [`Buffer`]: buffer.md#class-buffer | ||
| 1495 | 1493 | [`Content-Encoding`]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11 | |
| 1496 | - [`DataView`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView | ||
| 1497 | 1494 | [`DeflateRaw`]: #class-zlibdeflateraw | |
| 1498 | 1495 | [`Deflate`]: #class-zlibdeflate | |
| 1499 | 1496 | [`Gunzip`]: #class-zlibgunzip | |
| 1500 | 1497 | [`Gzip`]: #class-zlibgzip | |
| 1501 | 1498 | [`InflateRaw`]: #class-zlibinflateraw | |
| 1502 | 1499 | [`Inflate`]: #class-zlibinflate | |
| 1503 | - [`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray | ||
| 1504 | 1500 | [`Unzip`]: #class-zlibunzip | |
| 1505 | 1501 | [`buffer.kMaxLength`]: buffer.md#bufferkmaxlength | |
| 1506 | 1502 | [`deflateInit2` and `inflateInit2`]: https://zlib.net/manual.html#Advanced | |
| Back | FazBrowse Home | New Git URL |
0 commit comments