@trivikr-test/util-hex-encoding
Advanced tools
Comparing version 3.52.0 to 3.55.0
@@ -6,3 +6,3 @@ var SHORT_TO_HEX = {}; | ||
if (encodedByte.length === 1) { | ||
encodedByte = "0" + encodedByte; | ||
encodedByte = "0".concat(encodedByte); | ||
} | ||
@@ -23,3 +23,3 @@ SHORT_TO_HEX[i] = encodedByte; | ||
else { | ||
throw new Error("Cannot decode unrecognized sequence " + encodedByte + " as hexadecimal"); | ||
throw new Error("Cannot decode unrecognized sequence ".concat(encodedByte, " as hexadecimal")); | ||
} | ||
@@ -26,0 +26,0 @@ } |
{ | ||
"name": "@trivikr-test/util-hex-encoding", | ||
"version": "3.52.0", | ||
"version": "3.55.0", | ||
"description": "Converts binary buffers to and from lowercase hexadecimal encoding", | ||
@@ -22,3 +22,3 @@ "scripts": { | ||
"dependencies": { | ||
"tslib": "^2.3.0" | ||
"tslib": "^2.3.1" | ||
}, | ||
@@ -51,4 +51,4 @@ "types": "./dist-types/index.d.ts", | ||
"typedoc": "0.19.2", | ||
"typescript": "~4.3.5" | ||
"typescript": "~4.6.2" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15831
Updatedtslib@^2.3.1