Skip to content

Commit 47b901f

Browse files
committed
Use tabs instead of spaces.
1 parent 3be158f commit 47b901f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ function bitmap (width, height, byteWidth, bitsPerPixel, bytesPerPixel, image)
88
{
99
this.width = width;
1010
this.height = height;
11-
this.byteWidth = byteWidth;
12-
this.bitsPerPixel = bitsPerPixel;
13-
this.bytesPerPixel = bytesPerPixel;
14-
this.image = image;
11+
this.byteWidth = byteWidth;
12+
this.bitsPerPixel = bitsPerPixel;
13+
this.bytesPerPixel = bytesPerPixel;
14+
this.image = image;
1515
}
1616

1717
bitmap.prototype.colorAt = function(x, y)
1818
{
19-
return robotjs.getColor(this, x, y);
19+
return robotjs.getColor(this, x, y);
2020
};
2121

2222
module.exports.screen.capture = function()

0 commit comments

Comments
 (0)