(s: string | Expression)
| 4 | const ce = engine; |
| 5 | |
| 6 | function check(s: string | Expression): string { |
| 7 | if (typeof s === 'string') return ce.parse(s).toString(); |
| 8 | return ce.expr(s).toString(); |
| 9 | } |
| 10 | |
| 11 | // Check serialization of ASCII math using toString() |
| 12 | describe('NUMBERS', () => { |
no test coverage detected