| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -863,16 +863,16 @@ For more information, see | |||
| 863 | 863 | [`assert.notDeepStrictEqual()`]: #assert_assert_notdeepstrictequal_actual_expected_message | |
| 864 | 864 | [`assert.notStrictEqual()`]: #assert_assert_notstrictequal_actual_expected_message | |
| 865 | 865 | [`assert.ok()`]: #assert_assert_ok_value_message | |
| 866 | + [`assert.rejects()`]: #assert_assert_rejects_block_error_message | ||
| 866 | 867 | [`assert.strictEqual()`]: #assert_assert_strictequal_actual_expected_message | |
| 867 | 868 | [`assert.throws()`]: #assert_assert_throws_block_error_message | |
| 868 | - [`assert.rejects()`]: #assert_assert_rejects_block_error_message | ||
| 869 | 869 | [`strict mode`]: #assert_strict_mode | |
| 870 | 870 | [Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison | |
| 871 | + [Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript | ||
| 871 | 872 | [Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring | |
| 872 | 873 | [SameValueZero]: https://tc39.github.io/ecma262/#sec-samevaluezero | |
| 873 | 874 | [Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison | |
| 874 | 875 | [caveats]: #assert_caveats | |
| 875 | 876 | [enumerable "own" properties]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties | |
| 876 | 877 | [mdn-equality-guide]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness | |
| 877 | 878 | [prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots | |
| 878 | - [Object wrappers]: https://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2742,9 +2742,9 @@ This value may depend on the JS engine that is being used. | |||
| 2742 | 2742 | [`buf.length`]: #buffer_buf_length | |
| 2743 | 2743 | [`buf.slice()`]: #buffer_buf_slice_start_end | |
| 2744 | 2744 | [`buf.values()`]: #buffer_buf_values | |
| 2745 | - [`buffer.kMaxLength`]: #buffer_buffer_kmaxlength | ||
| 2746 | 2745 | [`buffer.constants.MAX_LENGTH`]: #buffer_buffer_constants_max_length | |
| 2747 | 2746 | [`buffer.constants.MAX_STRING_LENGTH`]: #buffer_buffer_constants_max_string_length | |
| 2747 | + [`buffer.kMaxLength`]: #buffer_buffer_kmaxlength | ||
| 2748 | 2748 | [`util.inspect()`]: util.html#util_util_inspect_object_options | |
| 2749 | 2749 | [RFC1345]: https://tools.ietf.org/html/rfc1345 | |
| 2750 | 2750 | [RFC4648, Section 5]: https://tools.ietf.org/html/rfc4648#section-5 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1378,13 +1378,6 @@ unavailable. | |||
| 1378 | 1378 | [`ChildProcess`]: #child_process_child_process | |
| 1379 | 1379 | [`Error`]: errors.html#errors_class_error | |
| 1380 | 1380 | [`EventEmitter`]: events.html#events_class_eventemitter | |
| 1381 | - [`subprocess.connected`]: #child_process_subprocess_connected | ||
| 1382 | - [`subprocess.disconnect()`]: #child_process_subprocess_disconnect | ||
| 1383 | - [`subprocess.kill()`]: #child_process_subprocess_kill_signal | ||
| 1384 | - [`subprocess.send()`]: #child_process_subprocess_send_message_sendhandle_options_callback | ||
| 1385 | - [`subprocess.stderr`]: #child_process_subprocess_stderr | ||
| 1386 | - [`subprocess.stdin`]: #child_process_subprocess_stdin | ||
| 1387 | - [`subprocess.stdout`]: #child_process_subprocess_stdout | ||
| 1388 | 1381 | [`child_process.exec()`]: #child_process_child_process_exec_command_options_callback | |
| 1389 | 1382 | [`child_process.execFile()`]: #child_process_child_process_execfile_file_args_options_callback | |
| 1390 | 1383 | [`child_process.execFileSync()`]: #child_process_child_process_execfilesync_file_args_options | |
@@ -1403,6 +1396,13 @@ unavailable. | |||
| 1403 | 1396 | [`process.on('message')`]: process.html#process_event_message | |
| 1404 | 1397 | [`process.send()`]: process.html#process_process_send_message_sendhandle_options_callback | |
| 1405 | 1398 | [`stdio`]: #child_process_options_stdio | |
| 1399 | + [`subprocess.connected`]: #child_process_subprocess_connected | ||
| 1400 | + [`subprocess.disconnect()`]: #child_process_subprocess_disconnect | ||
| 1401 | + [`subprocess.kill()`]: #child_process_subprocess_kill_signal | ||
| 1402 | + [`subprocess.send()`]: #child_process_subprocess_send_message_sendhandle_options_callback | ||
| 1403 | + [`subprocess.stderr`]: #child_process_subprocess_stderr | ||
| 1404 | + [`subprocess.stdin`]: #child_process_subprocess_stdin | ||
| 1405 | + [`subprocess.stdout`]: #child_process_subprocess_stdout | ||
| 1406 | 1406 | [`util.promisify()`]: util.html#util_util_promisify_original | |
| 1407 | 1407 | [Default Windows Shell]: #child_process_default_windows_shell | |
| 1408 | 1408 | [Shell Requirements]: #child_process_shell_requirements | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -873,6 +873,7 @@ socket.on('data', (id) => { | |||
| 873 | 873 | ||
| 874 | 874 | [`ChildProcess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback | |
| 875 | 875 | [`child_process.fork()`]: child_process.html#child_process_child_process_fork_modulepath_args_options | |
| 876 | + [`cluster.settings`]: #cluster_cluster_settings | ||
| 876 | 877 | [`disconnect`]: child_process.html#child_process_subprocess_disconnect | |
| 877 | 878 | [`kill`]: process.html#process_process_kill_pid_signal | |
| 878 | 879 | [`process` event: `'message'`]: process.html#process_event_message | |
@@ -881,4 +882,3 @@ socket.on('data', (id) => { | |||
| 881 | 882 | [Child Process module]: child_process.html#child_process_child_process_fork_modulepath_args_options | |
| 882 | 883 | [child_process event: 'exit']: child_process.html#child_process_event_exit | |
| 883 | 884 | [child_process event: 'message']: child_process.html#child_process_event_message | |
| 884 | - [`cluster.settings`]: #cluster_cluster_settings | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2324,8 +2324,8 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL. | |||
| 2324 | 2324 | [`hmac.update()`]: #crypto_hmac_update_data_inputencoding | |
| 2325 | 2325 | [`sign.sign()`]: #crypto_sign_sign_privatekey_outputformat | |
| 2326 | 2326 | [`sign.update()`]: #crypto_sign_update_data_inputencoding | |
| 2327 | - [`stream.transform` options]: stream.html#stream_new_stream_transform_options | ||
| 2328 | 2327 | [`stream.Writable` options]: stream.html#stream_constructor_new_stream_writable_options | |
| 2328 | + [`stream.transform` options]: stream.html#stream_new_stream_transform_options | ||
| 2329 | 2329 | [`tls.createSecureContext()`]: tls.html#tls_tls_createsecurecontext_options | |
| 2330 | 2330 | [`verify.update()`]: #crypto_verify_update_data_inputencoding | |
| 2331 | 2331 | [`verify.verify()`]: #crypto_verify_verify_object_signature_signatureformat | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -639,6 +639,7 @@ and `udp6` sockets). The bound address and port can be retrieved using | |||
| 639 | 639 | [`'close'`]: #dgram_event_close | |
| 640 | 640 | [`Error`]: errors.html#errors_class_error | |
| 641 | 641 | [`EventEmitter`]: events.html | |
| 642 | + [`System Error`]: errors.html#errors_class_systemerror | ||
| 642 | 643 | [`close()`]: #dgram_socket_close_callback | |
| 643 | 644 | [`cluster`]: cluster.html | |
| 644 | 645 | [`dgram.Socket#bind()`]: #dgram_socket_bind_options_callback | |
@@ -647,7 +648,6 @@ and `udp6` sockets). The bound address and port can be retrieved using | |||
| 647 | 648 | [`socket.address().address`]: #dgram_socket_address | |
| 648 | 649 | [`socket.address().port`]: #dgram_socket_address | |
| 649 | 650 | [`socket.bind()`]: #dgram_socket_bind_port_address_callback | |
| 650 | - [`System Error`]: errors.html#errors_class_systemerror | ||
| 651 | - [byte length]: buffer.html#buffer_class_method_buffer_bytelength_string_encoding | ||
| 652 | 651 | [IPv6 Zone Indices]: https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses | |
| 653 | 652 | [RFC 4007]: https://tools.ietf.org/html/rfc4007 | |
| 653 | + [byte length]: buffer.html#buffer_class_method_buffer_bytelength_string_encoding | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -93,9 +93,9 @@ relative to Linux and macOS. For an example of the subtle ways in which it's | |||
| 93 | 93 | sometimes impossible to replace Unix syscall semantics on Windows, see [Node.js | |
| 94 | 94 | issue 4760](https://github.com/nodejs/node/issues/4760). | |
| 95 | 95 | ||
| 96 | + [`fs.lchown()`]: fs.html#fs_fs_lchown_path_uid_gid_callback | ||
| 97 | + [`fs.open()`]: fs.html#fs_fs_open_path_flags_mode_callback | ||
| 98 | + [`process.on('warning')`]: process.html#process_event_warning | ||
| 99 | + [`stderr`]: process.html#process_process_stderr | ||
| 96 | 100 | [submit an issue]: https://github.com/nodejs/node/issues/new | |
| 97 | 101 | [the contributing guide]: https://github.com/nodejs/node/blob/master/CONTRIBUTING.md | |
| 98 | - [`stderr`]: process.html#process_process_stderr | ||
| 99 | - [`process.on('warning')`]: process.html#process_event_warning | ||
| 100 | - [`fs.open()`]: fs.html#fs_fs_open_path_flags_mode_callback | ||
| 101 | - [`fs.lchown()`]: fs.html#fs_fs_lchown_path_uid_gid_callback | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1240,8 +1240,6 @@ entry types were found. | |||
| 1240 | 1240 | A given value is out of the accepted range. | |
| 1241 | 1241 | ||
| 1242 | 1242 | [`ERR_INVALID_ARG_TYPE`]: #ERR_INVALID_ARG_TYPE | |
| 1243 | - [`subprocess.kill()`]: child_process.html#child_process_subprocess_kill_signal | ||
| 1244 | - [`subprocess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback | ||
| 1245 | 1243 | [`fs.readFileSync`]: fs.html#fs_fs_readfilesync_path_options | |
| 1246 | 1244 | [`fs.readdir`]: fs.html#fs_fs_readdir_path_options_callback | |
| 1247 | 1245 | [`fs.unlink`]: fs.html#fs_fs_unlink_path_callback | |
@@ -1254,9 +1252,12 @@ A given value is out of the accepted range. | |||
| 1254 | 1252 | [`new URLSearchParams(iterable)`]: url.html#url_constructor_new_urlsearchparams_iterable | |
| 1255 | 1253 | [`process.on('uncaughtException')`]: process.html#process_event_uncaughtexception | |
| 1256 | 1254 | [`process.send()`]: process.html#process_process_send_message_sendhandle_options_callback | |
| 1255 | + [`subprocess.kill()`]: child_process.html#child_process_subprocess_kill_signal | ||
| 1256 | + [`subprocess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback | ||
| 1257 | 1257 | [ICU]: intl.html#intl_internationalization_support | |
| 1258 | 1258 | [Node.js Error Codes]: #nodejs-error-codes | |
| 1259 | 1259 | [V8's stack trace API]: https://github.com/v8/v8/wiki/Stack-Trace-API | |
| 1260 | + [WHATWG Supported Encodings]: util.md#whatwg-supported-encodings | ||
| 1260 | 1261 | [WHATWG URL API]: url.html#url_the_whatwg_url_api | |
| 1261 | 1262 | [domains]: domain.html | |
| 1262 | 1263 | [event emitter-based]: events.html#events_class_eventemitter | |
@@ -1266,4 +1267,3 @@ A given value is out of the accepted range. | |||
| 1266 | 1267 | [syscall]: http://man7.org/linux/man-pages/man2/syscall.2.html | |
| 1267 | 1268 | [try-catch]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch | |
| 1268 | 1269 | [vm]: vm.html | |
| 1269 | - [WHATWG Supported Encodings]: util.md#whatwg-supported-encodings | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3218,8 +3218,8 @@ The following constants are meant for use with the [`fs.Stats`][] object's | |||
| 3218 | 3218 | [MDN-Date]: https://developer.mozilla.org/en-US/JavaScript/Reference/Global_Objects/Date | |
| 3219 | 3219 | [MDN-Number]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type | |
| 3220 | 3220 | [MSDN-Rel-Path]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247.aspx#fully_qualified_vs._relative_paths | |
| 3221 | + [MSDN-Using-Streams]: https://msdn.microsoft.com/en-us/library/windows/desktop/bb540537.aspx | ||
| 3222 | + [Naming Files, Paths, and Namespaces]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx | ||
| 3221 | 3223 | [Readable Stream]: stream.html#stream_class_stream_readable | |
| 3222 | 3224 | [Writable Stream]: stream.html#stream_class_stream_writable | |
| 3223 | 3225 | [inode]: https://en.wikipedia.org/wiki/Inode | |
| 3224 | - [Naming Files, Paths, and Namespaces]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx | ||
| 3225 | - [MSDN-Using-Streams]: https://msdn.microsoft.com/en-us/library/windows/desktop/bb540537.aspx | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2019,8 +2019,8 @@ not abort the request or do anything besides add a `timeout` event. | |||
| 2019 | 2019 | [`removeHeader(name)`]: #http_request_removeheader_name | |
| 2020 | 2020 | [`request.end()`]: #http_request_end_data_encoding_callback | |
| 2021 | 2021 | [`request.setTimeout()`]: #http_request_settimeout_timeout_callback | |
| 2022 | - [`request.socket`]: #http_request_socket | ||
| 2023 | 2022 | [`request.socket.getPeerCertificate()`]: tls.html#tls_tlssocket_getpeercertificate_detailed | |
| 2023 | + [`request.socket`]: #http_request_socket | ||
| 2024 | 2024 | [`request.write(data, encoding)`]: #http_request_write_chunk_encoding_callback | |
| 2025 | 2025 | [`response.end()`]: #http_response_end_data_encoding_callback | |
| 2026 | 2026 | [`response.setHeader()`]: #http_response_setheader_name_value | |
| Back | FazBrowse Home | New Git URL |
0 commit comments