Skip to content

Commit

Permalink
fix(trailing-zeros): Skip LaTeX-to-AST and AST-to-MathJS conversions …
Browse files Browse the repository at this point in the history
…for numeric equality checks PD-4410
  • Loading branch information
CarlaCostea committed Dec 12, 2024
1 parent 4b39fc2 commit f1c2d93
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/latex-equal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const latexEqual = (a: Latex, b: Latex, opts: Opts) => {
const numB = parseFloat(b);

if (numA === numB) {

return true;
}
}
Expand Down

0 comments on commit f1c2d93

Please sign in to comment.