pimath 0.0.85 → 0.0.86

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/pi.js CHANGED
@@ -4798,6 +4798,7 @@ class NumExp {
4798
4798
  }
4799
4799
  else if (element.token === '^') {
4800
4800
  const b = stack.pop(), a = stack.pop();
4801
+ console.log(a, b);
4801
4802
  if (a === undefined || b === undefined) {
4802
4803
  this.isValid = false;
4803
4804
  }