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