(rect1, rect2)
| 469 | |
| 470 | |
| 471 | function isRectEqual(rect1, rect2) { |
| 472 | return Math.round(rect1.top) === Math.round(rect2.top) && |
| 473 | Math.round(rect1.left) === Math.round(rect2.left) && |
| 474 | Math.round(rect1.height) === Math.round(rect2.height) && |
| 475 | Math.round(rect1.width) === Math.round(rect2.width); |
| 476 | } |
| 477 | |
| 478 | |
| 479 | let _throttleTimeout; |
no outgoing calls
no test coverage detected
searching dependent graphs…