pimath 0.0.70 → 0.0.71

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
@@ -4381,6 +4381,9 @@ class Fraction {
4381
4381
  return this.value.toFixed(3);
4382
4382
  }
4383
4383
  }
4384
+ get texWithSign() {
4385
+ return this.isPositive() ? `+${this.tex}` : this.tex;
4386
+ }
4384
4387
  get display() {
4385
4388
  if (this.isExact()) {
4386
4389
  if (this._denominator === 1) {