Appearance
function Rect.height(rect: Rect): number
Gets the height of a rectangle.
Rect.height({ left: 10, top: 20, width: 100, height: 50 }); // 50
pipe({ left: 10, top: 20, width: 100, height: 50 }, Rect.height()); // 50