JavaScript converts a large INT to scientific notation when the number becomes large. How can I prevent this from happening?
You can use from-exponential module. It is lightweight and fully tested.
import fromExponential from 'from-exponential'; fromExponential(1.123e-10); // => '0.0000000001123'