(a: any, b: any)
| 27 | * ``` |
| 28 | */ |
| 29 | export function deepEquals(a: any, b: any): boolean { |
| 30 | return deepEqualsInternal(a, b, new Map()) |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Internal implementation with cycle detection to prevent infinite recursion |
no test coverage detected
searching dependent graphs…