(rect: Rect)
| 490 | } |
| 491 | |
| 492 | function formatRect(rect: Rect): string { |
| 493 | return `x=${rect.x},y=${rect.y},w=${rect.width},h=${rect.height}`; |
| 494 | } |
| 495 | |
| 496 | function formatSignedPixels(value: number): string { |
| 497 | return value > 0 ? `+${value}` : String(value); |
no outgoing calls
no test coverage detected