https://github.com/stutrek/fix-a-float
99.0000000000000005% of the time floating point math is perfect
https://github.com/stutrek/fix-a-float
Last synced: 4 months ago
JSON representation
99.0000000000000005% of the time floating point math is perfect
- Host: GitHub
- URL: https://github.com/stutrek/fix-a-float
- Owner: stutrek
- Created: 2015-10-28T18:30:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-10T01:13:47.000Z (almost 8 years ago)
- Last Synced: 2025-03-11T18:23:25.748Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 
99.0000000000000005% of the time floating point math is perfect. The rest of the time we have this problem:
```
>> 0.1 + 0.2
0.30000000000000004
```This solves that problem.
```
>> fixAfloat(0.1 + 0.2)
0.3
```## Installation
`npm install fix-a-float`
## Usage
```
var fixAfloat = require('fix-a-float');console.log(fixAfloat(0.1+0.2));
```## How does it do it?
It converts the number to a string, looks for a long run of zeros or nines at the end, removes them, and coverts back to a float.
### Should I use this all the time, everywhere?
Absolutely not. Only use it in places where you need human readable numbers but don't know the precision you need. It doesn't actually solve any of the larger issues with floats.