Appearance
function Rect.isEmpty(rect: Rect): boolean
Checks if a rectangle is empty (has zero width or zero height).
Rect.isEmpty({ left: 10, top: 20, width: 0, height: 50 }); // true
pipe({ left: 10, top: 20, width: 0, height: 50 }, Rect.isEmpty()); // true