mirror of
https://github.com/github/codeql.git
synced 2026-07-16 00:38:15 +02:00
7 lines
114 B
JavaScript
7 lines
114 B
JavaScript
function Rectangle(x, y, width, height) {
|
|
this.x = x;
|
|
this.y = y;
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|