Closed trentjones21 closed 5 years ago
The readme on this repo has the following as one of the examples
Number.Delimit.number_to_delimited(12345678) "12,345,678"
However, when I run that exact command in iex I get
Number.Delimit.number_to_delimited(12345678) "12,345,678.00"
Should there be a discrepancy?
Looks like it defaults to precision: 2. I just needed to add precision: 0. Closing this issue, though maybe the readme should be updated at some point.
The readme on this repo has the following as one of the examples
However, when I run that exact command in iex I get
Should there be a discrepancy?