mol_dump_lib 0.0.143 → 0.0.145

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.mjs CHANGED
@@ -5183,7 +5183,12 @@ var $;
5183
5183
  }
5184
5184
  else {
5185
5185
  this.native().setItem(key, JSON.stringify(next));
5186
- this.$.$mol_storage.persisted(true);
5186
+ try {
5187
+ this.$.$mol_storage.persisted(true);
5188
+ }
5189
+ catch (error) {
5190
+ $mol_fail_log(error);
5191
+ }
5187
5192
  }
5188
5193
  return next;
5189
5194
  }
package/node.test.js CHANGED
@@ -5175,7 +5175,12 @@ var $;
5175
5175
  }
5176
5176
  else {
5177
5177
  this.native().setItem(key, JSON.stringify(next));
5178
- this.$.$mol_storage.persisted(true);
5178
+ try {
5179
+ this.$.$mol_storage.persisted(true);
5180
+ }
5181
+ catch (error) {
5182
+ $mol_fail_log(error);
5183
+ }
5179
5184
  }
5180
5185
  return next;
5181
5186
  }