(s: string)
| 3 | import { exprToString, engine as ce } from '../../utils'; |
| 4 | |
| 5 | function parse(s: string) { |
| 6 | return ce.parse(s); |
| 7 | } |
| 8 | |
| 9 | /** parseVal checks that the result is a numericValue (or an integer) */ |
| 10 | function parseVal(s: string): string | number { |