mol_wire_lib 1.0.873 → 1.0.875
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/node.d.ts +3 -3
- package/node.deps.json +1 -1
- package/node.js +4 -6
- package/node.js.map +1 -1
- package/node.mjs +4 -6
- package/node.test.js +4 -6
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +3 -3
- package/web.deps.json +1 -1
- package/web.js +4 -6
- package/web.js.map +1 -1
- package/web.mjs +4 -6
package/web.mjs
CHANGED
|
@@ -553,18 +553,16 @@ var $;
|
|
|
553
553
|
return this.toString();
|
|
554
554
|
}
|
|
555
555
|
static toString() {
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
556
|
+
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
|
|
557
|
+
}
|
|
558
|
+
static toJSON() {
|
|
559
|
+
return this.toString();
|
|
559
560
|
}
|
|
560
561
|
destructor() { }
|
|
561
562
|
static destructor() { }
|
|
562
563
|
toString() {
|
|
563
564
|
return this[Symbol.toStringTag] || this.constructor.name + '<>';
|
|
564
565
|
}
|
|
565
|
-
static toJSON() {
|
|
566
|
-
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
|
|
567
|
-
}
|
|
568
566
|
toJSON() {
|
|
569
567
|
return this.toString();
|
|
570
568
|
}
|