(left: Rect, right: Rect)
| 376 | } |
| 377 | |
| 378 | function sameRect(left: Rect, right: Rect): boolean { |
| 379 | return ( |
| 380 | left.x === right.x && |
| 381 | left.y === right.y && |
| 382 | left.width === right.width && |
| 383 | left.height === right.height |
| 384 | ); |
| 385 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…