@plasmicapp/react-web 0.2.367 → 0.2.368

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.
@@ -2700,7 +2700,7 @@ function set(obj, keys, val) {
2700
2700
  keys = keys.split ? keys.split(".") : keys;
2701
2701
  var i = 0, l = keys.length, t = obj, x, k;
2702
2702
  while (i < l) {
2703
- k = keys[i++];
2703
+ k = "" + keys[i++];
2704
2704
  if (k === "__proto__" || k === "constructor" || k === "prototype")
2705
2705
  break;
2706
2706
  var newValue = i === l