Skip to content

Commit 4cebbee

Browse files
fixed trailing commas
1 parent 98220cf commit 4cebbee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/drawUtils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = function(cv) {
66
newX,
77
newY,
88
Math.min(rect.width, imgDim.cols - newX),
9-
Math.min(rect.height, imgDim.rows - newY),
9+
Math.min(rect.height, imgDim.rows - newY)
1010
)
1111
}
1212

@@ -15,7 +15,7 @@ module.exports = function(cv) {
1515
fontType: cv.FONT_HERSHEY_SIMPLEX,
1616
fontSize: 0.8,
1717
thickness: 2,
18-
lineType: cv.LINE_4,
18+
lineType: cv.LINE_4
1919
})
2020
}
2121

0 commit comments

Comments
 (0)