MCPcopy Create free account
hub / github.com/marijnh/Eloquent-JavaScript / 04_4_deep_comparison.js

File 04_4_deep_comparison.js

code/solutions/04_4_deep_comparison.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1function deepEqual(a, b) {
2 if (a === b) return true;
3
4 if (a == null || typeof a != "object" ||

Callers

nothing calls this directly

Calls 1

deepEqualFunction · 0.85

Tested by

no test coverage detected