(rect1, rect2)
| 465 | return dst; |
| 466 | } |
| 467 | function isRectEqual(rect1, rect2) { |
| 468 | 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); |
| 469 | } |
| 470 | var _throttleTimeout; |
| 471 | function throttle(callback, ms) { |
| 472 | return function () { |
no outgoing calls
no test coverage detected
searching dependent graphs…