Skip to content

Commit

Permalink
Fix linting errors (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU authored Jan 23, 2024
1 parent 50cae94 commit 56a89eb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2119,16 +2119,16 @@ const hexSliceLookupTable = (function () {

// hex lookup table for Buffer.from(x, 'hex')
const hexCharValueTable = {
'0': 0,
'1': 1,
'2': 2,
'3': 3,
'4': 4,
'5': 5,
'6': 6,
'7': 7,
'8': 8,
'9': 9,
0: 0,
1: 1,
2: 2,
3: 3,
4: 4,
5: 5,
6: 6,
7: 7,
8: 8,
9: 9,
a: 10,
b: 11,
c: 12,
Expand Down

0 comments on commit 56a89eb

Please sign in to comment.