(op: string, latex: string)
| 66 | } |
| 67 | |
| 68 | function apply(op: string, latex: string): BoxedExpression { |
| 69 | return ce.function(op, [ce.parse(latex)]).evaluate(); |
| 70 | } |
| 71 | |
| 72 | /** Does the JSON of `expr` contain any non-integer (decimal) numeric literal? */ |
| 73 | function hasDecimalLiteral(expr: BoxedExpression): boolean { |
no test coverage detected