mol_dump_lib 0.0.270 → 0.0.271
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 +58 -52
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +22 -4
- package/node.js.map +1 -1
- package/node.mjs +22 -4
- package/node.test.js +22 -4
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +54 -52
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +9 -2
- package/web.js.map +1 -1
- package/web.mjs +9 -2
package/web.mjs
CHANGED
|
@@ -4771,9 +4771,13 @@ var $;
|
|
|
4771
4771
|
return exists;
|
|
4772
4772
|
if (next === exists)
|
|
4773
4773
|
return exists;
|
|
4774
|
-
if (next)
|
|
4774
|
+
if (next) {
|
|
4775
4775
|
this.parent().exists(true);
|
|
4776
|
-
|
|
4776
|
+
this.ensure();
|
|
4777
|
+
}
|
|
4778
|
+
else {
|
|
4779
|
+
this.drop();
|
|
4780
|
+
}
|
|
4777
4781
|
this.reset();
|
|
4778
4782
|
return next;
|
|
4779
4783
|
}
|
|
@@ -5070,6 +5074,9 @@ var $;
|
|
|
5070
5074
|
ensure() {
|
|
5071
5075
|
throw new Error('$mol_file_web.ensure() not implemented');
|
|
5072
5076
|
}
|
|
5077
|
+
drop() {
|
|
5078
|
+
throw new Error('$mol_file_web.drop() not implemented');
|
|
5079
|
+
}
|
|
5073
5080
|
sub() {
|
|
5074
5081
|
throw new Error('$mol_file_web.sub() not implemented');
|
|
5075
5082
|
}
|