(latex: string)
| 110 | return exprToString(engine.parse(latex)?.evaluate()); |
| 111 | } |
| 112 | |
| 113 | export function N(latex: string): string { |
| 114 | return exprToString(engine.parse(latex)?.N()); |
| 115 | } |
| 116 | |
| 117 | export function simplify(latex: string): string { |
no test coverage detected