mam 1.11.839 → 1.11.840

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
@@ -3201,6 +3201,8 @@ var $;
3201
3201
  if (this.$.$mol_fail_catch(error)) {
3202
3202
  if (error.code === 'ENOENT')
3203
3203
  return null;
3204
+ if (error.code === 'EPERM')
3205
+ return null;
3204
3206
  error.message += '\n' + path;
3205
3207
  this.$.$mol_fail_hidden(error);
3206
3208
  }
package/node.test.js CHANGED
@@ -3192,6 +3192,8 @@ var $;
3192
3192
  if (this.$.$mol_fail_catch(error)) {
3193
3193
  if (error.code === 'ENOENT')
3194
3194
  return null;
3195
+ if (error.code === 'EPERM')
3196
+ return null;
3195
3197
  error.message += '\n' + path;
3196
3198
  this.$.$mol_fail_hidden(error);
3197
3199
  }