({width, height}: Size)
| 54 | } |
| 55 | |
| 56 | export function sizeIsEmpty({width, height}: Size): boolean { |
| 57 | return width <= 0 || height <= 0; |
| 58 | } |
| 59 | |
| 60 | function rectToBox(rect: Rect): Box { |
| 61 | const top = rect.origin.y; |
no outgoing calls
no test coverage detected