ps-toolkit-ui 1.5.53 → 1.5.54

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.
@@ -1680,13 +1680,16 @@
1680
1680
  if (vl !== null) {
1681
1681
  if (d[inp.name] === undefined) {
1682
1682
  _.set(d, inp.name, vl);
1683
+ console.log(d, inp.name, vl, 'undefined');
1683
1684
  }
1684
1685
  else {
1685
1686
  if (d[inp.name] instanceof Array) {
1686
1687
  d[inp.name].push(vl);
1688
+ console.log(d, inp.name, vl, 'instanceof Array');
1687
1689
  }
1688
1690
  else {
1689
1691
  d[inp.name] = [d[inp.name], vl];
1692
+ console.log(d, inp.name, vl, 'instanceof obj');
1690
1693
  }
1691
1694
  }
1692
1695
  }