René's URL Explorer Experiment


Title: Assert | Node.js v25.2.1 Documentation

direct link

Domain: nodejs.org

nodejs.org:node-versionv25.2.1

Links:

Skip to contenthttps://nodejs.org/api/assert.html#apicontent
Node.js https://nodejs.org/
About this documentationhttps://nodejs.org/api/documentation.html
Usage and examplehttps://nodejs.org/api/synopsis.html
Assertion testinghttps://nodejs.org/api/assert.html
Asynchronous context trackinghttps://nodejs.org/api/async_context.html
Async hookshttps://nodejs.org/api/async_hooks.html
Bufferhttps://nodejs.org/api/buffer.html
C++ addonshttps://nodejs.org/api/addons.html
C/C++ addons with Node-APIhttps://nodejs.org/api/n-api.html
C++ embedder APIhttps://nodejs.org/api/embedding.html
Child processeshttps://nodejs.org/api/child_process.html
Clusterhttps://nodejs.org/api/cluster.html
Command-line optionshttps://nodejs.org/api/cli.html
Consolehttps://nodejs.org/api/console.html
Cryptohttps://nodejs.org/api/crypto.html
Debuggerhttps://nodejs.org/api/debugger.html
Deprecated APIshttps://nodejs.org/api/deprecations.html
Diagnostics Channelhttps://nodejs.org/api/diagnostics_channel.html
DNShttps://nodejs.org/api/dns.html
Domainhttps://nodejs.org/api/domain.html
Environment Variableshttps://nodejs.org/api/environment_variables.html
Errorshttps://nodejs.org/api/errors.html
Eventshttps://nodejs.org/api/events.html
File systemhttps://nodejs.org/api/fs.html
Globalshttps://nodejs.org/api/globals.html
HTTPhttps://nodejs.org/api/http.html
HTTP/2https://nodejs.org/api/http2.html
HTTPShttps://nodejs.org/api/https.html
Inspectorhttps://nodejs.org/api/inspector.html
Internationalizationhttps://nodejs.org/api/intl.html
Modules: CommonJS moduleshttps://nodejs.org/api/modules.html
Modules: ECMAScript moduleshttps://nodejs.org/api/esm.html
Modules: node:module APIhttps://nodejs.org/api/module.html
Modules: Packageshttps://nodejs.org/api/packages.html
Modules: TypeScripthttps://nodejs.org/api/typescript.html
Nethttps://nodejs.org/api/net.html
OShttps://nodejs.org/api/os.html
Pathhttps://nodejs.org/api/path.html
Performance hookshttps://nodejs.org/api/perf_hooks.html
Permissionshttps://nodejs.org/api/permissions.html
Processhttps://nodejs.org/api/process.html
Punycodehttps://nodejs.org/api/punycode.html
Query stringshttps://nodejs.org/api/querystring.html
Readlinehttps://nodejs.org/api/readline.html
REPLhttps://nodejs.org/api/repl.html
Reporthttps://nodejs.org/api/report.html
Single executable applicationshttps://nodejs.org/api/single-executable-applications.html
SQLitehttps://nodejs.org/api/sqlite.html
Streamhttps://nodejs.org/api/stream.html
String decoderhttps://nodejs.org/api/string_decoder.html
Test runnerhttps://nodejs.org/api/test.html
Timershttps://nodejs.org/api/timers.html
TLS/SSLhttps://nodejs.org/api/tls.html
Trace eventshttps://nodejs.org/api/tracing.html
TTYhttps://nodejs.org/api/tty.html
UDP/datagramhttps://nodejs.org/api/dgram.html
URLhttps://nodejs.org/api/url.html
Utilitieshttps://nodejs.org/api/util.html
V8https://nodejs.org/api/v8.html
VMhttps://nodejs.org/api/vm.html
WASIhttps://nodejs.org/api/wasi.html
Web Crypto APIhttps://nodejs.org/api/webcrypto.html
Web Streams APIhttps://nodejs.org/api/webstreams.html
Worker threadshttps://nodejs.org/api/worker_threads.html
Zlibhttps://nodejs.org/api/zlib.html
Code repository and issue trackerhttps://github.com/nodejs/node
Table of contents https://nodejs.org/api/assert.html#toc-picker
Asserthttps://nodejs.org/api/assert.html#assert
Strict assertion modehttps://nodejs.org/api/assert.html#strict-assertion-mode
Legacy assertion modehttps://nodejs.org/api/assert.html#legacy-assertion-mode
Class: assert.AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
new assert.AssertionError(options)https://nodejs.org/api/assert.html#new-assertassertionerroroptions
Class: assert.Asserthttps://nodejs.org/api/assert.html#class-assertassert
new assert.Assert([options])https://nodejs.org/api/assert.html#new-assertassertoptions
assert(value[, message])https://nodejs.org/api/assert.html#assertvalue-message
assert.deepEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
Comparison detailshttps://nodejs.org/api/assert.html#comparison-details
assert.deepStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
Comparison detailshttps://nodejs.org/api/assert.html#comparison-details_1
assert.doesNotMatch(string, regexp[, message])https://nodejs.org/api/assert.html#assertdoesnotmatchstring-regexp-message
assert.doesNotReject(asyncFn[, error][, message])https://nodejs.org/api/assert.html#assertdoesnotrejectasyncfn-error-message
assert.doesNotThrow(fn[, error][, message])https://nodejs.org/api/assert.html#assertdoesnotthrowfn-error-message
assert.equal(actual, expected[, message])https://nodejs.org/api/assert.html#assertequalactual-expected-message
assert.fail([message])https://nodejs.org/api/assert.html#assertfailmessage
assert.ifError(value)https://nodejs.org/api/assert.html#assertiferrorvalue
assert.match(string, regexp[, message])https://nodejs.org/api/assert.html#assertmatchstring-regexp-message
assert.notDeepEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotdeepequalactual-expected-message
assert.notDeepStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotdeepstrictequalactual-expected-message
assert.notEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotequalactual-expected-message
assert.notStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotstrictequalactual-expected-message
assert.ok(value[, message])https://nodejs.org/api/assert.html#assertokvalue-message
assert.rejects(asyncFn[, error][, message])https://nodejs.org/api/assert.html#assertrejectsasyncfn-error-message
assert.strictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
assert.throws(fn[, error][, message])https://nodejs.org/api/assert.html#assertthrowsfn-error-message
assert.partialDeepStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertpartialdeepstrictequalactual-expected-message
Comparison detailshttps://nodejs.org/api/assert.html#comparison-details_2
Index https://nodejs.org/api/assert.html#gtoc-picker
About this documentationhttps://nodejs.org/api/documentation.html
Usage and examplehttps://nodejs.org/api/synopsis.html
Indexhttps://nodejs.org/api/index.html
Assertion testinghttps://nodejs.org/api/assert.html
Asynchronous context trackinghttps://nodejs.org/api/async_context.html
Async hookshttps://nodejs.org/api/async_hooks.html
Bufferhttps://nodejs.org/api/buffer.html
C++ addonshttps://nodejs.org/api/addons.html
C/C++ addons with Node-APIhttps://nodejs.org/api/n-api.html
C++ embedder APIhttps://nodejs.org/api/embedding.html
Child processeshttps://nodejs.org/api/child_process.html
Clusterhttps://nodejs.org/api/cluster.html
Command-line optionshttps://nodejs.org/api/cli.html
Consolehttps://nodejs.org/api/console.html
Cryptohttps://nodejs.org/api/crypto.html
Debuggerhttps://nodejs.org/api/debugger.html
Deprecated APIshttps://nodejs.org/api/deprecations.html
Diagnostics Channelhttps://nodejs.org/api/diagnostics_channel.html
DNShttps://nodejs.org/api/dns.html
Domainhttps://nodejs.org/api/domain.html
Environment Variableshttps://nodejs.org/api/environment_variables.html
Errorshttps://nodejs.org/api/errors.html
Eventshttps://nodejs.org/api/events.html
File systemhttps://nodejs.org/api/fs.html
Globalshttps://nodejs.org/api/globals.html
HTTPhttps://nodejs.org/api/http.html
HTTP/2https://nodejs.org/api/http2.html
HTTPShttps://nodejs.org/api/https.html
Inspectorhttps://nodejs.org/api/inspector.html
Internationalizationhttps://nodejs.org/api/intl.html
Modules: CommonJS moduleshttps://nodejs.org/api/modules.html
Modules: ECMAScript moduleshttps://nodejs.org/api/esm.html
Modules: node:module APIhttps://nodejs.org/api/module.html
Modules: Packageshttps://nodejs.org/api/packages.html
Modules: TypeScripthttps://nodejs.org/api/typescript.html
Nethttps://nodejs.org/api/net.html
OShttps://nodejs.org/api/os.html
Pathhttps://nodejs.org/api/path.html
Performance hookshttps://nodejs.org/api/perf_hooks.html
Permissionshttps://nodejs.org/api/permissions.html
Processhttps://nodejs.org/api/process.html
Punycodehttps://nodejs.org/api/punycode.html
Query stringshttps://nodejs.org/api/querystring.html
Readlinehttps://nodejs.org/api/readline.html
REPLhttps://nodejs.org/api/repl.html
Reporthttps://nodejs.org/api/report.html
Single executable applicationshttps://nodejs.org/api/single-executable-applications.html
SQLitehttps://nodejs.org/api/sqlite.html
Streamhttps://nodejs.org/api/stream.html
String decoderhttps://nodejs.org/api/string_decoder.html
Test runnerhttps://nodejs.org/api/test.html
Timershttps://nodejs.org/api/timers.html
TLS/SSLhttps://nodejs.org/api/tls.html
Trace eventshttps://nodejs.org/api/tracing.html
TTYhttps://nodejs.org/api/tty.html
UDP/datagramhttps://nodejs.org/api/dgram.html
URLhttps://nodejs.org/api/url.html
Utilitieshttps://nodejs.org/api/util.html
V8https://nodejs.org/api/v8.html
VMhttps://nodejs.org/api/vm.html
WASIhttps://nodejs.org/api/wasi.html
Web Crypto APIhttps://nodejs.org/api/webcrypto.html
Web Streams APIhttps://nodejs.org/api/webstreams.html
Worker threadshttps://nodejs.org/api/worker_threads.html
Zlibhttps://nodejs.org/api/zlib.html
Code repository and issue trackerhttps://github.com/nodejs/node
Other versions https://nodejs.org/api/assert.html#alt-docs
25.xhttps://nodejs.org/docs/latest-v25.x/api/assert.html
24.x LTShttps://nodejs.org/docs/latest-v24.x/api/assert.html
23.xhttps://nodejs.org/docs/latest-v23.x/api/assert.html
22.x LTShttps://nodejs.org/docs/latest-v22.x/api/assert.html
21.xhttps://nodejs.org/docs/latest-v21.x/api/assert.html
20.x LTShttps://nodejs.org/docs/latest-v20.x/api/assert.html
19.xhttps://nodejs.org/docs/latest-v19.x/api/assert.html
18.xhttps://nodejs.org/docs/latest-v18.x/api/assert.html
17.xhttps://nodejs.org/docs/latest-v17.x/api/assert.html
16.xhttps://nodejs.org/docs/latest-v16.x/api/assert.html
15.xhttps://nodejs.org/docs/latest-v15.x/api/assert.html
14.xhttps://nodejs.org/docs/latest-v14.x/api/assert.html
13.xhttps://nodejs.org/docs/latest-v13.x/api/assert.html
12.xhttps://nodejs.org/docs/latest-v12.x/api/assert.html
11.xhttps://nodejs.org/docs/latest-v11.x/api/assert.html
10.xhttps://nodejs.org/docs/latest-v10.x/api/assert.html
9.xhttps://nodejs.org/docs/latest-v9.x/api/assert.html
8.xhttps://nodejs.org/docs/latest-v8.x/api/assert.html
7.xhttps://nodejs.org/docs/latest-v7.x/api/assert.html
6.xhttps://nodejs.org/docs/latest-v6.x/api/assert.html
5.xhttps://nodejs.org/docs/latest-v5.x/api/assert.html
4.xhttps://nodejs.org/docs/latest-v4.x/api/assert.html
0.12.xhttps://nodejs.org/docs/latest-v0.12.x/api/assert.html
0.10.xhttps://nodejs.org/docs/latest-v0.10.x/api/assert.html
Options https://nodejs.org/api/assert.html#options-picker
View on single pagehttps://nodejs.org/api/all.html
View as JSONhttps://nodejs.org/api/assert.json
Edit on GitHubhttps://github.com/nodejs/node/edit/main/doc/api/assert.md
Asserthttps://nodejs.org/api/assert.html#assert
Strict assertion modehttps://nodejs.org/api/assert.html#strict-assertion-mode
Legacy assertion modehttps://nodejs.org/api/assert.html#legacy-assertion-mode
Class: assert.AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
new assert.AssertionError(options)https://nodejs.org/api/assert.html#new-assertassertionerroroptions
Class: assert.Asserthttps://nodejs.org/api/assert.html#class-assertassert
new assert.Assert([options])https://nodejs.org/api/assert.html#new-assertassertoptions
assert(value[, message])https://nodejs.org/api/assert.html#assertvalue-message
assert.deepEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
Comparison detailshttps://nodejs.org/api/assert.html#comparison-details
assert.deepStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
Comparison detailshttps://nodejs.org/api/assert.html#comparison-details_1
assert.doesNotMatch(string, regexp[, message])https://nodejs.org/api/assert.html#assertdoesnotmatchstring-regexp-message
assert.doesNotReject(asyncFn[, error][, message])https://nodejs.org/api/assert.html#assertdoesnotrejectasyncfn-error-message
assert.doesNotThrow(fn[, error][, message])https://nodejs.org/api/assert.html#assertdoesnotthrowfn-error-message
assert.equal(actual, expected[, message])https://nodejs.org/api/assert.html#assertequalactual-expected-message
assert.fail([message])https://nodejs.org/api/assert.html#assertfailmessage
assert.ifError(value)https://nodejs.org/api/assert.html#assertiferrorvalue
assert.match(string, regexp[, message])https://nodejs.org/api/assert.html#assertmatchstring-regexp-message
assert.notDeepEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotdeepequalactual-expected-message
assert.notDeepStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotdeepstrictequalactual-expected-message
assert.notEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotequalactual-expected-message
assert.notStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertnotstrictequalactual-expected-message
assert.ok(value[, message])https://nodejs.org/api/assert.html#assertokvalue-message
assert.rejects(asyncFn[, error][, message])https://nodejs.org/api/assert.html#assertrejectsasyncfn-error-message
assert.strictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
assert.throws(fn[, error][, message])https://nodejs.org/api/assert.html#assertthrowsfn-error-message
assert.partialDeepStrictEqual(actual, expected[, message])https://nodejs.org/api/assert.html#assertpartialdeepstrictequalactual-expected-message
Comparison detailshttps://nodejs.org/api/assert.html#comparison-details_2
#https://nodejs.org/api/assert.html#assert
Stability: 2https://nodejs.org/api/documentation.html#stability-index
lib/assert.jshttps://github.com/nodejs/node/blob/v25.2.1/lib/assert.js
#https://nodejs.org/api/assert.html#strict-assertion-mode
assert.deepEqual()https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
assert.deepStrictEqual()https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
getColorDepth()https://nodejs.org/api/tty.html#writestreamgetcolordepthenv
#https://nodejs.org/api/assert.html#legacy-assertion-mode
== operatorhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality
assert.deepEqual()https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
assert.equal()https://nodejs.org/api/assert.html#assertequalactual-expected-message
assert.notDeepEqual()https://nodejs.org/api/assert.html#assertnotdeepequalactual-expected-message
assert.notEqual()https://nodejs.org/api/assert.html#assertnotequalactual-expected-message
assert.deepEqual()https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
#https://nodejs.org/api/assert.html#class-assertassertionerror
https://nodejs.org/api/errors.html#class-error
#https://nodejs.org/api/assert.html#new-assertassertionerroroptions
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
assert.strictEqual()https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
assert.strictEqual()https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#boolean_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
#https://nodejs.org/api/assert.html#class-assertassert
#https://nodejs.org/api/assert.html#new-assertassertoptions
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#boolean_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#boolean_type
#https://nodejs.org/api/assert.html#assertvalue-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.ok()https://nodejs.org/api/assert.html#assertokvalue-message
#https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.deepStrictEqual()https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
Stability: 3https://nodejs.org/api/documentation.html#stability-index
assert.deepStrictEqual()https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
assert.deepStrictEqual()https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
assert.deepEqual()https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
#https://nodejs.org/api/assert.html#comparison-details
== operatorhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN
Type tagshttps://tc39.github.io/ecma262/#sec-object.prototype.tostring
enumerable "own" propertieshttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
Object wrappershttps://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
[[Prototype]]https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
== operatorhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
SameValueZerohttps://tc39.github.io/ecma262/#sec-samevaluezero
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#comparison-details_1
Object.is()https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
Type tagshttps://tc39.github.io/ecma262/#sec-object.prototype.tostring
[[Prototype]]https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
=== operatorhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Strict_equality
enumerable "own" propertieshttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
Object wrappershttps://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#assertdoesnotmatchstring-regexp-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertdoesnotrejectasyncfn-error-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
ERR_INVALID_RETURN_VALUEhttps://nodejs.org/api/errors.html#err_invalid_return_value
Classhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
assert.throws()https://nodejs.org/api/assert.html#assertthrowsfn-error-message
assert.doesNotThrow()https://nodejs.org/api/assert.html#assertdoesnotthrowfn-error-message
#https://nodejs.org/api/assert.html#assertdoesnotthrowfn-error-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
Classhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
assert.throws()https://nodejs.org/api/assert.html#assertthrowsfn-error-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.strictEqual()https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
Stability: 3https://nodejs.org/api/documentation.html#stability-index
assert.strictEqual()https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
== operatorhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#assertfailmessage
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertiferrorvalue
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
#https://nodejs.org/api/assert.html#assertmatchstring-regexp-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertnotdeepequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.notDeepStrictEqual()https://nodejs.org/api/assert.html#assertnotdeepstrictequalactual-expected-message
Stability: 3https://nodejs.org/api/documentation.html#stability-index
assert.notDeepStrictEqual()https://nodejs.org/api/assert.html#assertnotdeepstrictequalactual-expected-message
assert.deepEqual()https://nodejs.org/api/assert.html#assertdeepequalactual-expected-message
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#assertnotdeepstrictequalactual-expected-message
SameValueZerohttps://tc39.github.io/ecma262/#sec-samevaluezero
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.deepStrictEqual()https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertnotequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.notStrictEqual()https://nodejs.org/api/assert.html#assertnotstrictequalactual-expected-message
Stability: 3https://nodejs.org/api/documentation.html#stability-index
assert.notStrictEqual()https://nodejs.org/api/assert.html#assertnotstrictequalactual-expected-message
!= operatorhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Inequality
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#assertnotstrictequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
Object.is()https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#assertokvalue-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
#https://nodejs.org/api/assert.html#assertrejectsasyncfn-error-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
ERR_INVALID_RETURN_VALUEhttps://nodejs.org/api/errors.html#err_invalid_return_value
assert.throws()https://nodejs.org/api/assert.html#assertthrowsfn-error-message
Classhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
assert.throws()https://nodejs.org/api/assert.html#assertthrowsfn-error-message
#https://nodejs.org/api/assert.html#assertstrictequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
Object.is()https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertthrowsfn-error-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
Classhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
AssertionErrorhttps://nodejs.org/api/assert.html#class-assertassertionerror
#https://nodejs.org/api/assert.html#assertpartialdeepstrictequalactual-expected-message
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Data_types
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#string_type
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
assert.deepStrictEqual()https://nodejs.org/api/assert.html#assertdeepstrictequalactual-expected-message
#https://nodejs.org/api/assert.html#comparison-details_2
Object.is()https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
Type tagshttps://tc39.github.io/ecma262/#sec-object.prototype.tostring
[[Prototype]]https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
enumerable "own" propertieshttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
Object wrappershttps://developer.mozilla.org/en-US/docs/Glossary/Primitive#Primitive_wrapper_objects_in_JavaScript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp

Viewport: width=device-width


URLs of crawlers that visited me.