(a: any, b: any)
| 473 | ] |
| 474 | |
| 475 | function iterableEqualityWithStack(a: any, b: any) { |
| 476 | return iterableEquality(a, b, [...customTesters], [...aStack], [...bStack]) |
| 477 | } |
| 478 | |
| 479 | if (a.size !== undefined) { |
| 480 | if (a.size !== b.size) { |
nothing calls this directly
no test coverage detected