@rkmodules/rules 0.0.86 → 0.0.88

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.esm.js CHANGED
@@ -341,7 +341,8 @@ function nAryOnTree(trees, fn, fill) {
341
341
  });
342
342
  var result = fn(items, paths, i);
343
343
  if (result !== DISCARD) {
344
- results = results.concat(result);
344
+ var resultArray = [].concat(result);
345
+ results.push.apply(results, __spreadArray([], __read(resultArray), false));
345
346
  }
346
347
  };
347
348
  for (var i = 0; i < maxLength; i++) {
@@ -1027,7 +1028,7 @@ var pow = {
1027
1028
  if (x === undefined || n === undefined)
1028
1029
  return DISCARD;
1029
1030
  return Math.pow(x, n);
1030
- }),
1031
+ }, true),
1031
1032
  }];
1032
1033
  });
1033
1034
  }); },