2015-04-08 11:04:42 +02:00

4 lines
99 B
JavaScript

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