( expr: LatexString | ExpressionInput, options?: FreeFunctionOptions )
| 160 | } |
| 161 | |
| 162 | export function factor( |
| 163 | expr: LatexString | ExpressionInput, |
| 164 | options?: FreeFunctionOptions |
| 165 | ): Expression { |
| 166 | return factorExpr(toExpression(expr, options)); |
| 167 | } |
| 168 | |
| 169 | export function compile<T extends string = 'javascript'>( |
| 170 | expr: LatexString | ExpressionInput, |
no test coverage detected