2016-05-01 20:51:00 -07:00

4 lines
99 B
TypeScript

export function createRectangle(left, top, width, height) {
return {left, top, width, height};
}