Experience-Monks / scientific-to-decimal

A function which will convert scientific numbers to decimal strings.
MIT License
10 stars 2 forks source link

scientific-to-decimal

experimental

A function which will convert scientific numbers to decimal strings.

Usage

NPM

Example

scientificToDecimal(1e+32); // '100000000000000000000000000000000'
scientificToDecimal(4.345e+21); // '4345000000000000000000'
scientificToDecimal(1e-9); // '0.000000001')
scientificToDecimal(4.34e-14); // '0.0000000000000434'

// will handle other numbers also
scientificToDecimal(33); // '33'
scientificToDecimal(NaN); // 'NaN'

License

MIT, see LICENSE.md for details.