safe-math-ops 0.0.6 → 0.0.7

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 +0 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,17 +14,3 @@ console.log(safeMath.substract([9.99, 8]));
14
14
  // Expected output: 1.9900000000000002
15
15
  console.log(9.99 - 8);
16
16
  ```
17
-
18
- To install dependencies:
19
-
20
- ```bash
21
- bun install
22
- ```
23
-
24
- To run:
25
-
26
- ```bash
27
- bun run index.ts
28
- ```
29
-
30
- This project was created using `bun init` in bun v1.3.6. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
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.6",
5
+ "version": "0.0.7",
6
6
  "devDependencies": {
7
7
  "@types/bun": "latest",
8
8
  "rimraf": "^6.1.3"