MCPcopy Index your code
hub / github.com/nodejs/node / utilIsDeepStrict

Function utilIsDeepStrict

test/parallel/test-util-isDeepStrictEqual.js:11–14  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

9const { test } = require('node:test');
10
11function utilIsDeepStrict(a, b) {
12 assert.strictEqual(util.isDeepStrictEqual(a, b), true);
13 assert.strictEqual(util.isDeepStrictEqual(b, a), true);
14}
15
16function notUtilIsDeepStrict(a, b) {
17 assert.strictEqual(util.isDeepStrictEqual(a, b), false);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…