Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
René Kooi committed Apr 21, 2016
1 parent 387ca97 commit f664e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SLP.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ SLP.prototype.parseFrame = function (id) {
const outlines = []
let offset = frame.outlineTableOffset

const orNext = x => x || buf[++offset]
const orNext = (x) => x || buf[++offset]

for (let i = 0; i < height; i++) {
let left = buf.readUInt16LE(offset)
Expand Down

0 comments on commit f664e12

Please sign in to comment.