@plasmicapp/react-web 0.2.367 → 0.2.369

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/dist/index.cjs.js CHANGED
@@ -2719,7 +2719,7 @@ function set(obj, keys, val) {
2719
2719
  keys = keys.split ? keys.split(".") : keys;
2720
2720
  var i = 0, l = keys.length, t = obj, x, k;
2721
2721
  while (i < l) {
2722
- k = keys[i++];
2722
+ k = "" + keys[i++];
2723
2723
  if (k === "__proto__" || k === "constructor" || k === "prototype")
2724
2724
  break;
2725
2725
  var newValue = i === l