(obj1: any, obj2: any)
| 262 | } |
| 263 | |
| 264 | function isReplaceable(obj1: any, obj2: any) { |
| 265 | const obj1Type = getSimpleType(obj1) |
| 266 | const obj2Type = getSimpleType(obj2) |
| 267 | return ( |
| 268 | obj1Type === obj2Type && (obj1Type === 'Object' || obj1Type === 'Array') |
| 269 | ) |
| 270 | } |
| 271 | |
| 272 | export function printDiffOrStringify( |
| 273 | received: unknown, |
no outgoing calls
no test coverage detected