isDeepEqual
It returns true if the params are equal in depth.
Types
IsDeepEqualProps
Parameters accepted by isDeepEqual.
| Property | Type | Required | Description |
|---|---|---|---|
objA | unknown | ✓ | The first value to compare. |
objB | unknown | ✓ | The second value to compare. |
map | WeakMap<object, unknown> | An internal WeakMap used to track already-visited object pairs and handle circular references. Should not be passed by callers — it is managed automatically by recursive calls. |
