adamwdraper / Numeral-js

A javascript library for formatting and manipulating numbers.
http://numeraljs.com
MIT License
9.65k stars 926 forks source link

fix negative number formatting to a specific precision #760

Open kianomoomi opened 2 years ago

kianomoomi commented 2 years ago

Fixes #714

Rounding negative numbers that end with 5 are not similar to positive numbers that end with . So to deal with negative numbers correctly, I first considered them as positive numbers and rounded the numbers and at the end I made the result negative.