mol_dump_lib 0.0.260 → 0.0.261
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 +52 -52
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +8 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +52 -52
- package/web.js +1 -1
- package/web.js.map +1 -1
- package/web.mjs +1 -1
- package/web.test.js +7 -0
- package/web.test.js.map +1 -1
package/node.mjs
CHANGED
|
@@ -2756,7 +2756,7 @@ var $;
|
|
|
2756
2756
|
}
|
|
2757
2757
|
}
|
|
2758
2758
|
dom_id() {
|
|
2759
|
-
return this.toString().replace(/</g, '(').replace(/>/g, ')');
|
|
2759
|
+
return this.toString().replace(/</g, '(').replace(/>/g, ')').replaceAll(/"/g, "'");
|
|
2760
2760
|
}
|
|
2761
2761
|
dom_node_external(next) {
|
|
2762
2762
|
const node = next ?? $mol_dom_context.document.createElementNS(this.dom_name_space(), this.dom_name());
|
package/node.test.js
CHANGED
|
@@ -2747,7 +2747,7 @@ var $;
|
|
|
2747
2747
|
}
|
|
2748
2748
|
}
|
|
2749
2749
|
dom_id() {
|
|
2750
|
-
return this.toString().replace(/</g, '(').replace(/>/g, ')');
|
|
2750
|
+
return this.toString().replace(/</g, '(').replace(/>/g, ')').replaceAll(/"/g, "'");
|
|
2751
2751
|
}
|
|
2752
2752
|
dom_node_external(next) {
|
|
2753
2753
|
const node = next ?? $mol_dom_context.document.createElementNS(this.dom_name_space(), this.dom_name());
|
|
@@ -6485,6 +6485,13 @@ var $;
|
|
|
6485
6485
|
$.$mol_test_complete = $mol_test_complete;
|
|
6486
6486
|
})($ || ($ = {}));
|
|
6487
6487
|
|
|
6488
|
+
;
|
|
6489
|
+
"use strict";
|
|
6490
|
+
var $;
|
|
6491
|
+
(function ($_1) {
|
|
6492
|
+
$mol_test_mocks.push($ => $.$mol_fail_log = () => false);
|
|
6493
|
+
})($ || ($ = {}));
|
|
6494
|
+
|
|
6488
6495
|
;
|
|
6489
6496
|
"use strict";
|
|
6490
6497
|
var $;
|