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