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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/nfc.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "w-ui-v1",
3
- "version": "1.0.55",
3
+ "version": "1.0.56",
4
4
  "description": "w-ui",
5
5
  "author": "wgxshh",
6
6
  "license": "ISC",
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) {