@leofcoin/peernet 0.14.9 → 0.14.10
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/dist/browser/peernet.js +1 -1
- package/dist/commonjs/peernet.js +1 -1
- package/dist/module/peernet.js +1 -1
- package/package.json +1 -1
- package/src/peernet.js +1 -1
package/dist/browser/peernet.js
CHANGED
|
@@ -1197,7 +1197,7 @@ class Peernet {
|
|
|
1197
1197
|
}
|
|
1198
1198
|
console.log({data});
|
|
1199
1199
|
data = new Uint8Array(Object.values(data));
|
|
1200
|
-
proto = await protoFor(data);
|
|
1200
|
+
const proto = await protoFor(data);
|
|
1201
1201
|
// TODO: store data automaticly or not
|
|
1202
1202
|
return proto.decoded.data
|
|
1203
1203
|
|
package/dist/commonjs/peernet.js
CHANGED
package/dist/module/peernet.js
CHANGED
package/package.json
CHANGED
package/src/peernet.js
CHANGED
|
@@ -455,7 +455,7 @@ export default class Peernet {
|
|
|
455
455
|
}
|
|
456
456
|
console.log({data});
|
|
457
457
|
data = new Uint8Array(Object.values(data))
|
|
458
|
-
proto = await protoFor(data)
|
|
458
|
+
const proto = await protoFor(data)
|
|
459
459
|
// TODO: store data automaticly or not
|
|
460
460
|
return proto.decoded.data
|
|
461
461
|
|