Skip to content

Commit

Permalink
Forgot a semicolon :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Wiggins authored and Ben Wiggins committed Aug 15, 2018
1 parent 10bf1f7 commit b7cee22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function nowEpochSeconds(){
}

function base64urlEncode(data) {
const str = typeof data === 'number' ? data.toString() : data
const str = typeof data === 'number' ? data.toString() : data;
return Buffer.from(str)
.toString('base64')
.replace(/\+/g, '-')
Expand Down

0 comments on commit b7cee22

Please sign in to comment.