In a function that uses mathjs would like to have the results displayed as 1000000000000000000000000000 instead of 1e+27.
I tried the math.format() function, but didn't work.
> x = 1e+27
< 1e+27
> math.format(x, {notation: 'fixed'})
< "1e+27"
> math.format(x, {notation: 'auto', exponential: {lower: 1e-100, upper: 1e+100}})
< "1e+27"