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