(a, b)
| 444 | } |
| 445 | |
| 446 | function coordsEq(a, b) { |
| 447 | if(a && b) { |
| 448 | return Math.abs(a - b) < EQUALITY_TOLERANCE; |
| 449 | } |
| 450 | return false; |
| 451 | } |
| 452 | |
| 453 | function compareBBoxes(a, b) { |
| 454 | return ['x', 'y', 'width', 'height'].map( |
no outgoing calls
no test coverage detected
searching dependent graphs…