infinityplus 1.0.0 → 1.0.1
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.
- package/README.md +1 -0
- package/package.json +15 -3
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# InfinityPlus
|
|
2
2
|
A simple big number library that shouldnt be hard to understand.
|
|
3
|
+
You can access the github respository of InfinityPlus [here](https://github.com/unmRainbow7/InfinityPlus?tab=readme-ov-file)
|
|
3
4
|
## Features
|
|
4
5
|
1. Number storage beyond 1.79e308
|
|
5
6
|
2. Big number calculations
|
package/package.json
CHANGED
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infinityplus",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A simple big number library that shouldnt be hard to understand",
|
|
5
5
|
"main": "InfinityPlus.mjs",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
|
-
"keywords": [
|
|
9
|
+
"keywords": [
|
|
10
|
+
"big-number",
|
|
11
|
+
"scientific-notation",
|
|
12
|
+
"library",
|
|
13
|
+
"math",
|
|
14
|
+
"beyond-infinity",
|
|
15
|
+
"simple",
|
|
16
|
+
"exponent",
|
|
17
|
+
"mantissa"
|
|
18
|
+
],
|
|
10
19
|
"author": "unmraindow",
|
|
11
20
|
"license": "MIT",
|
|
12
|
-
"type": "module"
|
|
21
|
+
"type": "module",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"infinityplus": "^1.0.0"
|
|
24
|
+
}
|
|
13
25
|
}
|