mol_jsx_lib 0.0.249 → 0.0.250

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.esm.js CHANGED
@@ -908,7 +908,7 @@ var $;
908
908
  if (key === 'id')
909
909
  continue;
910
910
  if (typeof props[key] === 'string') {
911
- if (key in node)
911
+ if (typeof node[key] === 'string')
912
912
  node[key] = props[key];
913
913
  node.setAttribute(key, props[key]);
914
914
  }