Why simplify function transform a string to number? I don't want to change the typeof value, because it may cause some problems. ```javascript math.simplify('f("0xffff")') // args[0]: r {value: 123} math.simplify('"1234"') // {value: 1234} ```
Why simplify function transform a string to number? I don't want to change the typeof value, because it may cause some problems.