@zilliqa-js/util
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "@zilliqa-js/util", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Utilities for working with Zillia.", | ||
"main": "dist/index.js", | ||
"node": "dist/index.js", | ||
"main": "dist/index.umd.js", | ||
"node": "dist/index.umd.js", | ||
"browser": "dist/index.umd.js", | ||
@@ -23,3 +23,3 @@ "module": "dist/index.esm.js", | ||
}, | ||
"gitHead": "c1a04e0c11848b02233410c7f1e09e00db1efd26" | ||
"gitHead": "fda77bac379ed24d8666f3c77b3c8bf6a48b69bd" | ||
} |
@@ -87,8 +87,8 @@ /** | ||
let res = []; | ||
const res = []; | ||
for (let i = 0; i < hex.length; i++) { | ||
let c = hex.charCodeAt(i); | ||
let hi = c >> 8; | ||
let lo = c & 0xff; | ||
const c = hex.charCodeAt(i); | ||
const hi = c >> 8; | ||
const lo = c & 0xff; | ||
@@ -95,0 +95,0 @@ hi ? res.push(hi, lo) : res.push(lo); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
793580
29
0
194