From 56a89ebc942c461e13f35bd3a05eb938919eda6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Linus=20Unneb=C3=A4ck?= Date: Tue, 23 Jan 2024 11:47:31 +0100 Subject: [PATCH] Fix linting errors (#340) --- index.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/index.js b/index.js index 8cb261d..dad9152 100644 --- a/index.js +++ b/index.js @@ -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, -- 2.34.1