]> zoso.dev Git - buffer.git/commitdiff
fix variable name for hexSlice
authorKirill Fomichev <fanatid@ya.ru>
Wed, 11 Sep 2019 20:31:07 +0000 (23:31 +0300)
committerKirill Fomichev <fanatid@ya.ru>
Wed, 11 Sep 2019 20:31:07 +0000 (23:31 +0300)
index.js

index 9ec8a35555e5455e2d0cf0625f15ff0f4a08e1f2..19b0468a0abe20e311c0015cb694415e45fed5a7 100644 (file)
--- a/index.js
+++ b/index.js
@@ -1068,7 +1068,7 @@ function hexSlice (buf, start, end) {
 
   var out = ''
   for (var i = start; i < end; ++i) {
-    out += hexSliceNewLookupTable[buf[i]]
+    out += hexSliceLookupTable[buf[i]]
   }
   return out
 }
@@ -1786,7 +1786,7 @@ function numberIsNaN (obj) {
 
 // Create lookup table for `toString('hex')`
 // See: https://github.com/feross/buffer/issues/219
-var hexSliceNewLookupTable = (function () {
+var hexSliceLookupTable = (function () {
   var alphabet = '0123456789abcdef'
   var table = new Array(256)
   for (var i = 0; i < 16; ++i) {