mol_view_tree2_lib 1.0.113 → 1.0.114

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
@@ -4915,6 +4915,8 @@ var $;
4915
4915
  if (this.$.$mol_fail_catch(error)) {
4916
4916
  if (error.code === 'ENOENT')
4917
4917
  return null;
4918
+ if (error.code === 'EPERM')
4919
+ return null;
4918
4920
  error.message += '\n' + path;
4919
4921
  this.$.$mol_fail_hidden(error);
4920
4922
  }
package/node.test.js CHANGED
@@ -4906,6 +4906,8 @@ var $;
4906
4906
  if (this.$.$mol_fail_catch(error)) {
4907
4907
  if (error.code === 'ENOENT')
4908
4908
  return null;
4909
+ if (error.code === 'EPERM')
4910
+ return null;
4909
4911
  error.message += '\n' + path;
4910
4912
  this.$.$mol_fail_hidden(error);
4911
4913
  }