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