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

Function isDeepEqual

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

Source from the content-addressed store, hash-verified

1053
1054module.exports = {
1055 isDeepEqual(val1, val2) {
1056 return detectCycles(val1, val2, kLoose);
1057 },
1058 isDeepStrictEqual(val1, val2, skipPrototype) {
1059 return detectCycles(val1, val2, skipPrototype ? kStrictWithoutPrototypes : kStrict);
1060 },

Callers 1

assert.jsFile · 0.85

Calls 1

detectCyclesFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…