safe-math-ops 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,7 @@
1
- # safe_math_operations
1
+ # safe-math-ops
2
+
3
+ The goal of this package was to prevent weird decimals from appearing.
4
+ e.g. 9.99 - 8 = 1.9900000000000002 instead of 1.99
2
5
 
3
6
  To install dependencies:
4
7
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "safe-math-ops",
3
3
  "module": "src/index.ts",
4
4
  "type": "module",
5
- "version": "0.0.1",
5
+ "version": "0.0.2",
6
6
  "devDependencies": {
7
7
  "@types/bun": "latest",
8
8
  "rimraf": "^6.1.3"