@player-ui/common-expressions-plugin 0.10.3-next.3 → 0.10.3

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.
@@ -7548,12 +7548,12 @@ var CommonExpressionsPlugin = function() {
7548
7548
  if (args.every(function(v) {
7549
7549
  return Array.isArray(v);
7550
7550
  })) {
7551
- var arrayArgs = args;
7552
- return arrayArgs.reduce(function(merged, next) {
7551
+ var merged = [];
7552
+ args.forEach(function(next) {
7553
7553
  var _merged;
7554
7554
  (_merged = merged).push.apply(_merged, _to_consumable_array(next));
7555
- return merged;
7556
7555
  });
7556
+ return merged;
7557
7557
  }
7558
7558
  return args.reduce(function(merged, next) {
7559
7559
  return merged + (next !== null && next !== void 0 ? next : "");