w-ui-v1 1.0.55 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/utils/nfc.ts +2 -1
package/package.json
CHANGED
package/utils/nfc.ts
CHANGED
|
@@ -188,7 +188,8 @@ function __read(intent) {
|
|
|
188
188
|
|
|
189
189
|
function bytesToHexString(inarray) {
|
|
190
190
|
var i, j, x;
|
|
191
|
-
var hex = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"
|
|
191
|
+
var hex = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A",
|
|
192
|
+
"B", "C", "D", "E", "F"
|
|
192
193
|
];
|
|
193
194
|
var out = "";
|
|
194
195
|
for (j = 0; j < inarray.length; ++j) {
|