@numio/bigmath 2.1.0 → 2.1.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/index.d.ts +6 -3
- package/index.js +6 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -3,12 +3,15 @@ import { mul } from "./src/operations/mul/main.d.ts";
|
|
3
3
|
import { sub } from "./src/operations/sub/main.d.ts";
|
4
4
|
import { div } from "./src/operations/div/main.d.ts";
|
5
5
|
import { round } from "./src/round/main.d.ts";
|
6
|
-
import {
|
6
|
+
import { Pipe } from "./src/pipe/main.d.ts";
|
7
7
|
import { quartile } from "./src/quartile/main.d.ts";
|
8
8
|
import { sort } from "./src/sort/main.d.ts";
|
9
9
|
import { mean } from "./src/mean/main.d.ts";
|
10
|
-
import { isEqual, isLeftGreater, max, min } from "./src/compare/main.d.ts";
|
10
|
+
import { isEqual, isLeftGreater, isLeftGreaterOrEqual, max, min } from "./src/compare/main.d.ts";
|
11
11
|
import { IQR } from "./src/IQR/main.d.ts";
|
12
12
|
import { MAD } from "./src/MAD/main.d.ts";
|
13
13
|
import { sqrt } from "./src/sqrt/main.d.ts";
|
14
|
-
|
14
|
+
import { cbrt } from "./src/cbrt/main.d.ts";
|
15
|
+
import { abs } from "./src/abs/main.d.ts";
|
16
|
+
import { toBase } from "./src/toBase/main.d.ts";
|
17
|
+
export { abs, add, cbrt, div, IQR, isEqual, isLeftGreater, isLeftGreaterOrEqual, MAD, max, mean, min, mul, Pipe, quartile, round, sort, sqrt, sub, toBase, };
|
package/index.js
CHANGED
@@ -3,12 +3,15 @@ import { mul } from "./src/operations/mul/main.js";
|
|
3
3
|
import { sub } from "./src/operations/sub/main.js";
|
4
4
|
import { div } from "./src/operations/div/main.js";
|
5
5
|
import { round } from "./src/round/main.js";
|
6
|
-
import {
|
6
|
+
import { Pipe } from "./src/pipe/main.js";
|
7
7
|
import { quartile } from "./src/quartile/main.js";
|
8
8
|
import { sort } from "./src/sort/main.js";
|
9
9
|
import { mean } from "./src/mean/main.js";
|
10
|
-
import { isEqual, isLeftGreater, max, min } from "./src/compare/main.js";
|
10
|
+
import { isEqual, isLeftGreater, isLeftGreaterOrEqual, max, min, } from "./src/compare/main.js";
|
11
11
|
import { IQR } from "./src/IQR/main.js";
|
12
12
|
import { MAD } from "./src/MAD/main.js";
|
13
13
|
import { sqrt } from "./src/sqrt/main.js";
|
14
|
-
|
14
|
+
import { cbrt } from "./src/cbrt/main.js";
|
15
|
+
import { abs } from "./src/abs/main.js";
|
16
|
+
import { toBase } from "./src/toBase/main.js";
|
17
|
+
export { abs, add, cbrt, div, IQR, isEqual, isLeftGreater, isLeftGreaterOrEqual, MAD, max, mean, min, mul, Pipe, quartile, round, sort, sqrt, sub, toBase, };
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@numio/bigmath",
|
3
3
|
"description": "@numio/bigmath is an arbitrary-precision arithmetic library. It can be used for basic operations with decimal numbers (integers and float)",
|
4
|
-
"version": "2.1.
|
4
|
+
"version": "2.1.1",
|
5
5
|
"keywords": [
|
6
6
|
"precision",
|
7
7
|
"arithmetic",
|