mol_plot_all 1.2.1115 → 1.2.1116

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
@@ -2257,7 +2257,7 @@ var $;
2257
2257
  if (val === undefined) {
2258
2258
  continue;
2259
2259
  }
2260
- if (val === null || val === false) {
2260
+ else if (val === null || val === false) {
2261
2261
  if (!el.hasAttribute(name))
2262
2262
  continue;
2263
2263
  el.removeAttribute(name);
package/node.test.js CHANGED
@@ -2248,7 +2248,7 @@ var $;
2248
2248
  if (val === undefined) {
2249
2249
  continue;
2250
2250
  }
2251
- if (val === null || val === false) {
2251
+ else if (val === null || val === false) {
2252
2252
  if (!el.hasAttribute(name))
2253
2253
  continue;
2254
2254
  el.removeAttribute(name);