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

Function isDeepStrictEqual

lib/internal/util/comparisons.js:1058–1060  ·  view source on GitHub ↗
(val1, val2, skipPrototype)

Source from the content-addressed store, hash-verified

1056 return detectCycles(val1, val2, kLoose);
1057 },
1058 isDeepStrictEqual(val1, val2, skipPrototype) {
1059 return detectCycles(val1, val2, skipPrototype ? kStrictWithoutPrototypes : kStrict);
1060 },
1061 isPartialStrictEqual(val1, val2) {
1062 return detectCycles(val1, val2, kPartial);
1063 },

Callers

nothing calls this directly

Calls 1

detectCyclesFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…