(data: any)
| 257 | const MAX_DIFF_STRING_LENGTH = 20_000 |
| 258 | |
| 259 | function isAsymmetricMatcher(data: any) { |
| 260 | const type = getSimpleType(data) |
| 261 | return type === 'Object' && typeof data.asymmetricMatch === 'function' |
| 262 | } |
| 263 | |
| 264 | function isReplaceable(obj1: any, obj2: any) { |
| 265 | const obj1Type = getSimpleType(obj1) |
no outgoing calls
no test coverage detected