| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ce789f1 commit 5a730b5
39 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1356,11 +1356,11 @@ console.log(result); | |||
| 1356 | 1356 | // Prints: 30 | |
| 1357 | 1357 | ``` | |
| 1358 | 1358 | ||
| 1359 | - [`Worker`]: worker_threads.md#worker_threads_class_worker | ||
| 1360 | 1359 | [Electron]: https://electronjs.org/ | |
| 1361 | 1360 | [Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide | |
| 1362 | 1361 | [Linking to libraries included with Node.js]: #addons_linking_to_libraries_included_with_node_js | |
| 1363 | 1362 | [Native Abstractions for Node.js]: https://github.com/nodejs/nan | |
| 1363 | + [`Worker`]: worker_threads.md#worker_threads_class_worker | ||
| 1364 | 1364 | [bindings]: https://github.com/TooTallNate/node-bindings | |
| 1365 | 1365 | [download]: https://github.com/nodejs/node-addon-examples | |
| 1366 | 1366 | [examples]: https://github.com/nodejs/nan/tree/master/examples/ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1556,6 +1556,11 @@ assert.throws(throwingFirst, /Second$/); | |||
| 1556 | 1556 | Due to the confusing error-prone notation, avoid a string as the second | |
| 1557 | 1557 | argument. | |
| 1558 | 1558 | ||
| 1559 | + [Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison | ||
| 1560 | + [Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript | ||
| 1561 | + [Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring | ||
| 1562 | + [SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue | ||
| 1563 | + [Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison | ||
| 1559 | 1564 | [`AssertionError`]: #assert_class_assert_assertionerror | |
| 1560 | 1565 | [`Class`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes | |
| 1561 | 1566 | [`ERR_INVALID_RETURN_VALUE`]: errors.md#errors_err_invalid_return_value | |
@@ -1585,10 +1590,5 @@ argument. | |||
| 1585 | 1590 | [`tracker.calls()`]: #assert_tracker_calls_fn_exact | |
| 1586 | 1591 | [`tracker.verify()`]: #assert_tracker_verify | |
| 1587 | 1592 | [strict assertion mode]: #assert_strict_assertion_mode | |
| 1588 | - [Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison | ||
| 1589 | - [Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript | ||
| 1590 | - [Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring | ||
| 1591 | - [SameValue Comparison]: https://tc39.github.io/ecma262/#sec-samevalue | ||
| 1592 | - [Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison | ||
| 1593 | 1593 | [enumerable "own" properties]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties | |
| 1594 | 1594 | [prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1167,16 +1167,16 @@ If you need to keep using callback-based API, or your code assumes | |||
| 1167 | 1167 | a custom thenable implementation, use the [`AsyncResource`][] class | |
| 1168 | 1168 | to associate the asynchronous operation with the correct execution context. | |
| 1169 | 1169 | ||
| 1170 | + [Hook Callbacks]: #async_hooks_hook_callbacks | ||
| 1171 | + [PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit | ||
| 1170 | 1172 | [`AsyncResource`]: #async_hooks_class_asyncresource | |
| 1171 | 1173 | [`after` callback]: #async_hooks_after_asyncid | |
| 1172 | 1174 | [`before` callback]: #async_hooks_before_asyncid | |
| 1173 | 1175 | [`destroy` callback]: #async_hooks_destroy_asyncid | |
| 1174 | 1176 | [`init` callback]: #async_hooks_init_asyncid_type_triggerasyncid_resource | |
| 1175 | 1177 | [`promiseResolve` callback]: #async_hooks_promiseresolve_asyncid | |
| 1176 | 1178 | [`EventEmitter`]: events.md#events_class_eventemitter | |
| 1177 | - [Hook Callbacks]: #async_hooks_hook_callbacks | ||
| 1178 | - [PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit | ||
| 1179 | 1179 | [`Stream`]: stream.md#stream_stream | |
| 1180 | 1180 | [`Worker`]: worker_threads.md#worker_threads_class_worker | |
| 1181 | - [promise execution tracking]: #async_hooks_promise_execution_tracking | ||
| 1182 | 1181 | [`util.promisify()`]: util.md#util_util_promisify_original | |
| 1182 | + [promise execution tracking]: #async_hooks_promise_execution_tracking | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3261,7 +3261,12 @@ While there are clear performance advantages to using | |||
| 3261 | 3261 | [`Buffer.allocUnsafe()`][], extra care *must* be taken in order to avoid | |
| 3262 | 3262 | introducing security vulnerabilities into an application. | |
| 3263 | 3263 | ||
| 3264 | + [ASCII]: https://en.wikipedia.org/wiki/ASCII | ||
| 3265 | + [Base64]: https://en.wikipedia.org/wiki/Base64 | ||
| 3266 | + [ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1 | ||
| 3264 | 3267 | [RFC 4648, Section 5]: https://tools.ietf.org/html/rfc4648#section-5 | |
| 3268 | + [UTF-16]: https://en.wikipedia.org/wiki/UTF-16 | ||
| 3269 | + [UTF-8]: https://en.wikipedia.org/wiki/UTF-8 | ||
| 3265 | 3270 | [WHATWG Encoding Standard]: https://encoding.spec.whatwg.org/ | |
| 3266 | 3271 | [`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer | |
| 3267 | 3272 | [`Buffer.alloc()`]: #buffer_static_method_buffer_alloc_size_fill_encoding | |
@@ -3281,10 +3286,10 @@ introducing security vulnerabilities into an application. | |||
| 3281 | 3286 | [`String#indexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf | |
| 3282 | 3287 | [`String#lastIndexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf | |
| 3283 | 3288 | [`String.prototype.length`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length | |
| 3284 | - [`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from | ||
| 3285 | 3289 | [`TypedArray#set()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set | |
| 3286 | 3290 | [`TypedArray#slice()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/slice | |
| 3287 | 3291 | [`TypedArray#subarray()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray | |
| 3292 | + [`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from | ||
| 3288 | 3293 | [`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray | |
| 3289 | 3294 | [`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array | |
| 3290 | 3295 | [`buf.buffer`]: #buffer_buf_buffer | |
@@ -3301,11 +3306,6 @@ introducing security vulnerabilities into an application. | |||
| 3301 | 3306 | [`buffer.constants.MAX_STRING_LENGTH`]: #buffer_buffer_constants_max_string_length | |
| 3302 | 3307 | [`buffer.kMaxLength`]: #buffer_buffer_kmaxlength | |
| 3303 | 3308 | [`util.inspect()`]: util.md#util_util_inspect_object_options | |
| 3304 | - [ASCII]: https://en.wikipedia.org/wiki/ASCII | ||
| 3305 | - [Base64]: https://en.wikipedia.org/wiki/Base64 | ||
| 3306 | - [ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1 | ||
| 3307 | - [UTF-8]: https://en.wikipedia.org/wiki/UTF-8 | ||
| 3308 | - [UTF-16]: https://en.wikipedia.org/wiki/UTF-16 | ||
| 3309 | 3309 | [binary strings]: https://developer.mozilla.org/en-US/docs/Web/API/DOMString/Binary | |
| 3310 | 3310 | [endianness]: https://en.wikipedia.org/wiki/Endianness | |
| 3311 | 3311 | [iterator]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1580,6 +1580,9 @@ Therefore, this feature requires opting in by setting the | |||
| 1580 | 1580 | or [`child_process.fork()`][]. | |
| 1581 | 1581 | ||
| 1582 | 1582 | [Advanced serialization]: #child_process_advanced_serialization | |
| 1583 | + [Default Windows shell]: #child_process_default_windows_shell | ||
| 1584 | + [HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm | ||
| 1585 | + [Shell requirements]: #child_process_shell_requirements | ||
| 1583 | 1586 | [`'disconnect'`]: process.md#process_event_disconnect | |
| 1584 | 1587 | [`'error'`]: #child_process_event_error | |
| 1585 | 1588 | [`'exit'`]: #child_process_event_exit | |
@@ -1612,8 +1615,5 @@ or [`child_process.fork()`][]. | |||
| 1612 | 1615 | [`subprocess.stdio`]: #child_process_subprocess_stdio | |
| 1613 | 1616 | [`subprocess.stdout`]: #child_process_subprocess_stdout | |
| 1614 | 1617 | [`util.promisify()`]: util.md#util_util_promisify_original | |
| 1615 | - [Default Windows shell]: #child_process_default_windows_shell | ||
| 1616 | - [HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm | ||
| 1617 | - [Shell requirements]: #child_process_shell_requirements | ||
| 1618 | 1618 | [synchronous counterparts]: #child_process_synchronous_process_creation | |
| 1619 | 1619 | [v8.serdes]: v8.md#v8_serialization_api | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -873,6 +873,8 @@ socket.on('data', (id) => { | |||
| 873 | 873 | }); | |
| 874 | 874 | ``` | |
| 875 | 875 | ||
| 876 | + [Advanced serialization for `child_process`]: child_process.md#child_process_advanced_serialization | ||
| 877 | + [Child Process module]: child_process.md#child_process_child_process_fork_modulepath_args_options | ||
| 876 | 878 | [`.fork()`]: #cluster_cluster_fork_env | |
| 877 | 879 | [`.setupMaster()`]: #cluster_cluster_setupmaster_settings | |
| 878 | 880 | [`ChildProcess.send()`]: child_process.md#child_process_subprocess_send_message_sendhandle_options_callback | |
@@ -885,5 +887,3 @@ socket.on('data', (id) => { | |||
| 885 | 887 | [`process` event: `'message'`]: process.md#process_event_message | |
| 886 | 888 | [`server.close()`]: net.md#net_event_close | |
| 887 | 889 | [`worker.exitedAfterDisconnect`]: #cluster_worker_exitedafterdisconnect | |
| 888 | - [Advanced serialization for `child_process`]: child_process.md#child_process_advanced_serialization | ||
| 889 | - [Child Process module]: child_process.md#child_process_child_process_fork_modulepath_args_options | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3544,6 +3544,23 @@ See the [list of SSL OP Flags][] for details. | |||
| 3544 | 3544 | </tr> | |
| 3545 | 3545 | </table> | |
| 3546 | 3546 | ||
| 3547 | + [AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption | ||
| 3548 | + [CCM mode]: #crypto_ccm_mode | ||
| 3549 | + [Caveats]: #crypto_support_for_weak_or_compromised_algorithms | ||
| 3550 | + [Crypto constants]: #crypto_crypto_constants_1 | ||
| 3551 | + [HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed | ||
| 3552 | + [HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen | ||
| 3553 | + [NIST SP 800-131A]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf | ||
| 3554 | + [NIST SP 800-132]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf | ||
| 3555 | + [NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf | ||
| 3556 | + [Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect | ||
| 3557 | + [OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html | ||
| 3558 | + [RFC 1421]: https://www.rfc-editor.org/rfc/rfc1421.txt | ||
| 3559 | + [RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt | ||
| 3560 | + [RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt | ||
| 3561 | + [RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt | ||
| 3562 | + [RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt | ||
| 3563 | + [RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt | ||
| 3547 | 3564 | [`Buffer`]: buffer.md | |
| 3548 | 3565 | [`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html | |
| 3549 | 3566 | [`KeyObject`]: #crypto_class_keyobject | |
@@ -3594,27 +3611,10 @@ See the [list of SSL OP Flags][] for details. | |||
| 3594 | 3611 | [`util.promisify()`]: util.md#util_util_promisify_original | |
| 3595 | 3612 | [`verify.update()`]: #crypto_verify_update_data_inputencoding | |
| 3596 | 3613 | [`verify.verify()`]: #crypto_verify_verify_object_signature_signatureencoding | |
| 3597 | - [AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption | ||
| 3598 | - [CCM mode]: #crypto_ccm_mode | ||
| 3599 | - [Caveats]: #crypto_support_for_weak_or_compromised_algorithms | ||
| 3600 | - [Crypto constants]: #crypto_crypto_constants_1 | ||
| 3601 | - [HTML 5.2]: https://www.w3.org/TR/html52/changes.html#features-removed | ||
| 3602 | - [HTML5's `keygen` element]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen | ||
| 3603 | - [NIST SP 800-131A]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf | ||
| 3604 | - [NIST SP 800-132]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf | ||
| 3605 | - [NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf | ||
| 3606 | - [modulo bias]: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias | ||
| 3607 | - [Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect | ||
| 3608 | - [OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html | ||
| 3609 | - [RFC 1421]: https://www.rfc-editor.org/rfc/rfc1421.txt | ||
| 3610 | - [RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt | ||
| 3611 | - [RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt | ||
| 3612 | - [RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt | ||
| 3613 | - [RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt | ||
| 3614 | - [RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt | ||
| 3615 | 3614 | [encoding]: buffer.md#buffer_buffers_and_character_encodings | |
| 3616 | 3615 | [initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector | |
| 3617 | 3616 | [list of SSL OP Flags]: https://wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options | |
| 3617 | + [modulo bias]: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias | ||
| 3618 | 3618 | [safe integers]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger | |
| 3619 | 3619 | [scrypt]: https://en.wikipedia.org/wiki/Scrypt | |
| 3620 | 3620 | [stream]: stream.md | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -201,5 +201,5 @@ Chrome DevTools doesn't support debugging [worker threads][] yet. | |||
| 201 | 201 | ||
| 202 | 202 | [Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/ | |
| 203 | 203 | [V8 Inspector]: #debugger_v8_inspector_integration_for_node_js | |
| 204 | - [worker threads]: worker_threads.md | ||
| 205 | 204 | [ndb]: https://github.com/GoogleChromeLabs/ndb/ | |
| 205 | + [worker threads]: worker_threads.md | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2623,6 +2623,10 @@ Type: Documentation-only | |||
| 2623 | 2623 | The [`crypto.Certificate()` constructor][] is deprecated. Use | |
| 2624 | 2624 | [static methods of `crypto.Certificate()`][] instead. | |
| 2625 | 2625 | ||
| 2626 | + [Legacy URL API]: url.md#url_legacy_url_api | ||
| 2627 | + [NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf | ||
| 2628 | + [RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3 | ||
| 2629 | + [WHATWG URL API]: url.md#url_the_whatwg_url_api | ||
| 2626 | 2630 | [`--pending-deprecation`]: cli.md#cli_pending_deprecation | |
| 2627 | 2631 | [`--throw-deprecation`]: cli.md#cli_throw_deprecation | |
| 2628 | 2632 | [`Buffer.allocUnsafeSlow(size)`]: buffer.md#buffer_static_method_buffer_allocunsafeslow_size | |
@@ -2683,18 +2687,18 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use | |||
| 2683 | 2687 | [`process.env`]: process.md#process_process_env | |
| 2684 | 2688 | [`process.mainModule`]: process.md#process_process_mainmodule | |
| 2685 | 2689 | [`punycode`]: punycode.md | |
| 2686 | - [`require.extensions`]: modules.md#modules_require_extensions | ||
| 2687 | - [`require.main`]: modules.md#modules_accessing_the_main_module | ||
| 2688 | 2690 | [`request.abort()`]: http.md#http_request_abort | |
| 2689 | - [`request.socket`]: http.md#http_request_socket | ||
| 2690 | 2691 | [`request.connection`]: http.md#http_request_connection | |
| 2691 | 2692 | [`request.destroy()`]: http.md#http_request_destroy_error | |
| 2692 | - [`response.socket`]: http.md#http_response_socket | ||
| 2693 | + [`request.socket`]: http.md#http_request_socket | ||
| 2694 | + [`require.extensions`]: modules.md#modules_require_extensions | ||
| 2695 | + [`require.main`]: modules.md#modules_accessing_the_main_module | ||
| 2693 | 2696 | [`response.connection`]: http.md#http_response_connection | |
| 2694 | 2697 | [`response.end()`]: http.md#http_response_end_data_encoding_callback | |
| 2695 | 2698 | [`response.finished`]: http.md#http_response_finished | |
| 2696 | - [`response.writableFinished`]: http.md#http_response_writablefinished | ||
| 2699 | + [`response.socket`]: http.md#http_response_socket | ||
| 2697 | 2700 | [`response.writableEnded`]: http.md#http_response_writableended | |
| 2701 | + [`response.writableFinished`]: http.md#http_response_writablefinished | ||
| 2698 | 2702 | [`script.createCachedData()`]: vm.md#vm_script_createcacheddata | |
| 2699 | 2703 | [`setInterval()`]: timers.md#timers_setinterval_callback_delay_args | |
| 2700 | 2704 | [`setTimeout()`]: timers.md#timers_settimeout_callback_delay_args | |
@@ -2737,10 +2741,6 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use | |||
| 2737 | 2741 | [`worker.terminate()`]: worker_threads.md#worker_threads_worker_terminate | |
| 2738 | 2742 | [`writable.writableLength`]: stream.md#stream_writable_writablelength | |
| 2739 | 2743 | [`zlib.bytesWritten`]: zlib.md#zlib_zlib_byteswritten | |
| 2740 | - [Legacy URL API]: url.md#url_legacy_url_api | ||
| 2741 | - [NIST SP 800-38D]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf | ||
| 2742 | - [RFC 6066]: https://tools.ietf.org/html/rfc6066#section-3 | ||
| 2743 | - [WHATWG URL API]: url.md#url_the_whatwg_url_api | ||
| 2744 | 2744 | [alloc]: buffer.md#buffer_static_method_buffer_alloc_size_fill_encoding | |
| 2745 | 2745 | [alloc_unsafe_size]: buffer.md#buffer_static_method_buffer_allocunsafe_size | |
| 2746 | 2746 | [from_arraybuffer]: buffer.md#buffer_static_method_buffer_from_arraybuffer_byteoffset_length | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -785,6 +785,8 @@ interfaces" address on a random port (it does the right thing for both `udp4` | |||
| 785 | 785 | and `udp6` sockets). The bound address and port can be retrieved using | |
| 786 | 786 | [`socket.address().address`][] and [`socket.address().port`][]. | |
| 787 | 787 | ||
| 788 | + [IPv6 Zone Indices]: https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses | ||
| 789 | + [RFC 4007]: https://tools.ietf.org/html/rfc4007 | ||
| 788 | 790 | [`'close'`]: #dgram_event_close | |
| 789 | 791 | [`ERR_SOCKET_BAD_PORT`]: errors.md#errors_err_socket_bad_port | |
| 790 | 792 | [`ERR_SOCKET_BUFFER_SIZE`]: errors.md#errors_err_socket_buffer_size | |
@@ -800,6 +802,4 @@ and `udp6` sockets). The bound address and port can be retrieved using | |||
| 800 | 802 | [`socket.address().address`]: #dgram_socket_address | |
| 801 | 803 | [`socket.address().port`]: #dgram_socket_address | |
| 802 | 804 | [`socket.bind()`]: #dgram_socket_bind_port_address_callback | |
| 803 | - [IPv6 Zone Indices]: https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses | ||
| 804 | - [RFC 4007]: https://tools.ietf.org/html/rfc4007 | ||
| 805 | 805 | [byte length]: buffer.md#buffer_static_method_buffer_bytelength_string_encoding | |
| Back | FazBrowse Home | New Git URL |
0 commit comments