@agrozyme/numeric 1.0.29 → 1.0.30
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/package.json +23 -38
- package/rslib.config.ts +8 -0
- package/tsconfig.json +6 -5
- package/jasmine.json +0 -7
- package/lib/config.d.ts +0 -3
- package/lib/config.js +0 -33
- package/lib/config.js.map +0 -1
- package/lib/config.mjs +0 -28
- package/lib/config.mjs.map +0 -1
- package/lib/constants.d.ts +0 -9
- package/lib/constants.js +0 -15
- package/lib/constants.js.map +0 -1
- package/lib/constants.mjs +0 -11
- package/lib/constants.mjs.map +0 -1
- package/lib/format.d.ts +0 -18
- package/lib/format.js +0 -13
- package/lib/format.js.map +0 -1
- package/lib/format.mjs +0 -8
- package/lib/format.mjs.map +0 -1
- package/lib/helper.d.ts +0 -11
- package/lib/helper.js +0 -58
- package/lib/helper.js.map +0 -1
- package/lib/helper.mjs +0 -49
- package/lib/helper.mjs.map +0 -1
- package/lib/index.d.ts +0 -14
- package/lib/index.js +0 -40
- package/lib/index.js.map +0 -1
- package/lib/index.mjs +0 -12
- package/lib/index.mjs.map +0 -1
- package/lib/numeric.d.ts +0 -137
- package/lib/numeric.js +0 -423
- package/lib/numeric.js.map +0 -1
- package/lib/numeric.mjs +0 -411
- package/lib/numeric.mjs.map +0 -1
- package/tsc-multi.json +0 -7
- /package/{root → src}/config.ts +0 -0
- /package/{root → src}/constants.ts +0 -0
- /package/{root → src}/format.ts +0 -0
- /package/{root → src}/helper.ts +0 -0
- /package/{root → src}/index.ts +0 -0
- /package/{root → src}/numeric.ts +0 -0
package/lib/numeric.d.ts
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { BigNumber, BigNumberish } from '@ethersproject/bignumber';
|
|
3
|
-
import 'big-integer';
|
|
4
|
-
import bigInt from 'big-integer';
|
|
5
|
-
import 'bn.js';
|
|
6
|
-
import BN from 'bn.js';
|
|
7
|
-
import 'decimal.js';
|
|
8
|
-
import { Decimal } from 'decimal.js';
|
|
9
|
-
import { InspectOptionsStylized } from 'util';
|
|
10
|
-
export type NumericValue = Numeric | Decimal.Value | bigInt.BigNumber | BigNumberish;
|
|
11
|
-
export declare const toNumeric: (value: NumericValue) => Numeric;
|
|
12
|
-
export declare const toNumerics: (values: NumericValue[]) => Numeric[];
|
|
13
|
-
export declare const toIntegerString: (value: NumericValue) => string;
|
|
14
|
-
export declare const toBigInt: (value: NumericValue) => bigint;
|
|
15
|
-
export declare const toBN: (value: NumericValue) => BN;
|
|
16
|
-
export declare const toBigInteger: (value: NumericValue) => bigInt.BigInteger;
|
|
17
|
-
export declare const toBigNumber: (value: NumericValue) => BigNumber;
|
|
18
|
-
export declare class Numeric extends Decimal {
|
|
19
|
-
constructor(value: NumericValue);
|
|
20
|
-
static abs(value: NumericValue): Numeric;
|
|
21
|
-
static acos(value: NumericValue): Numeric;
|
|
22
|
-
static acosh(value: NumericValue): Numeric;
|
|
23
|
-
static add(x: NumericValue, y: NumericValue): Numeric;
|
|
24
|
-
static asin(value: NumericValue): Numeric;
|
|
25
|
-
static asinh(value: NumericValue): Numeric;
|
|
26
|
-
static atan(value: NumericValue): Numeric;
|
|
27
|
-
static atanh(value: NumericValue): Numeric;
|
|
28
|
-
static atan2(x: NumericValue, y: NumericValue): Numeric;
|
|
29
|
-
static cbrt(value: NumericValue): Numeric;
|
|
30
|
-
static ceil(value: NumericValue): Numeric;
|
|
31
|
-
static clamp(value: NumericValue, min: NumericValue, max: NumericValue): Numeric;
|
|
32
|
-
static cos(value: NumericValue): Numeric;
|
|
33
|
-
static cosh(value: NumericValue): Numeric;
|
|
34
|
-
static div(x: NumericValue, y: NumericValue): Numeric;
|
|
35
|
-
static exp(value: NumericValue): Numeric;
|
|
36
|
-
static floor(value: NumericValue): Numeric;
|
|
37
|
-
static hypot(...values: NumericValue[]): Numeric;
|
|
38
|
-
static ln(value: NumericValue): Numeric;
|
|
39
|
-
static log(value: NumericValue, base?: NumericValue): Numeric;
|
|
40
|
-
static log2(value: NumericValue): Numeric;
|
|
41
|
-
static log10(value: NumericValue): Numeric;
|
|
42
|
-
static max(...values: NumericValue[]): Numeric;
|
|
43
|
-
static min(...values: NumericValue[]): Numeric;
|
|
44
|
-
static mod(x: NumericValue, y: NumericValue): Numeric;
|
|
45
|
-
static mul(x: NumericValue, y: NumericValue): Numeric;
|
|
46
|
-
static pow(base: NumericValue, exponent: NumericValue): Numeric;
|
|
47
|
-
static random(significantDigits?: number): Numeric;
|
|
48
|
-
static round(value: NumericValue): Numeric;
|
|
49
|
-
static set(object: Decimal.Config): typeof Decimal;
|
|
50
|
-
static sign(value: NumericValue): number;
|
|
51
|
-
static sin(value: NumericValue): Numeric;
|
|
52
|
-
static sinh(value: NumericValue): Numeric;
|
|
53
|
-
static sqrt(value: NumericValue): Numeric;
|
|
54
|
-
static sub(x: NumericValue, y: NumericValue): Numeric;
|
|
55
|
-
static sum(...values: NumericValue[]): Numeric;
|
|
56
|
-
static tan(value: NumericValue): Numeric;
|
|
57
|
-
static tanh(value: NumericValue): Numeric;
|
|
58
|
-
static trunc(value: NumericValue): Numeric;
|
|
59
|
-
absoluteValue(): Numeric;
|
|
60
|
-
abs(): Numeric;
|
|
61
|
-
ceil(): Numeric;
|
|
62
|
-
clampedTo(min: NumericValue, max: NumericValue): Numeric;
|
|
63
|
-
clamp(min: NumericValue, max: NumericValue): Numeric;
|
|
64
|
-
comparedTo(value: NumericValue): number;
|
|
65
|
-
cmp(value: NumericValue): number;
|
|
66
|
-
cosine(): Numeric;
|
|
67
|
-
cos(): Numeric;
|
|
68
|
-
cubeRoot(): Numeric;
|
|
69
|
-
cbrt(): Numeric;
|
|
70
|
-
dividedBy(value: NumericValue): Numeric;
|
|
71
|
-
div(value: NumericValue): Numeric;
|
|
72
|
-
dividedToIntegerBy(value: NumericValue): Numeric;
|
|
73
|
-
divToInt(value: NumericValue): Numeric;
|
|
74
|
-
equals(value: NumericValue): boolean;
|
|
75
|
-
eq(value: NumericValue): boolean;
|
|
76
|
-
floor(): Numeric;
|
|
77
|
-
greaterThan(value: NumericValue): boolean;
|
|
78
|
-
gt(value: NumericValue): boolean;
|
|
79
|
-
greaterThanOrEqualTo(value: NumericValue): boolean;
|
|
80
|
-
gte(value: NumericValue): boolean;
|
|
81
|
-
hyperbolicCosine(): Numeric;
|
|
82
|
-
cosh(): Numeric;
|
|
83
|
-
hyperbolicSine(): Numeric;
|
|
84
|
-
sinh(): Numeric;
|
|
85
|
-
hyperbolicTangent(): Numeric;
|
|
86
|
-
tanh(): Numeric;
|
|
87
|
-
inverseCosine(): Numeric;
|
|
88
|
-
acos(): Numeric;
|
|
89
|
-
inverseHyperbolicCosine(): Numeric;
|
|
90
|
-
acosh(): Numeric;
|
|
91
|
-
inverseHyperbolicSine(): Numeric;
|
|
92
|
-
asinh(): Numeric;
|
|
93
|
-
inverseHyperbolicTangent(): Numeric;
|
|
94
|
-
atanh(): Numeric;
|
|
95
|
-
inverseSine(): Numeric;
|
|
96
|
-
asin(): Numeric;
|
|
97
|
-
inverseTangent(): Numeric;
|
|
98
|
-
atan(): Numeric;
|
|
99
|
-
lessThan(value: NumericValue): boolean;
|
|
100
|
-
lt(value: NumericValue): boolean;
|
|
101
|
-
lessThanOrEqualTo(value: NumericValue): boolean;
|
|
102
|
-
lte(value: NumericValue): boolean;
|
|
103
|
-
logarithm(value?: NumericValue): Numeric;
|
|
104
|
-
log(value?: NumericValue): Numeric;
|
|
105
|
-
minus(value: NumericValue): Numeric;
|
|
106
|
-
sub(value: NumericValue): Numeric;
|
|
107
|
-
modulo(value: NumericValue): Numeric;
|
|
108
|
-
mod(value: NumericValue): Numeric;
|
|
109
|
-
naturalExponential(): Numeric;
|
|
110
|
-
exp(): Numeric;
|
|
111
|
-
naturalLogarithm(): Numeric;
|
|
112
|
-
ln(): Numeric;
|
|
113
|
-
negated(): Numeric;
|
|
114
|
-
neg(): Numeric;
|
|
115
|
-
plus(value: NumericValue): Numeric;
|
|
116
|
-
add(value: NumericValue): Numeric;
|
|
117
|
-
round(): Numeric;
|
|
118
|
-
sine(): Numeric;
|
|
119
|
-
sin(): Numeric;
|
|
120
|
-
squareRoot(): Numeric;
|
|
121
|
-
sqrt(): Numeric;
|
|
122
|
-
tangent(): Numeric;
|
|
123
|
-
tan(): Numeric;
|
|
124
|
-
times(value: NumericValue): Numeric;
|
|
125
|
-
mul(value: NumericValue): Numeric;
|
|
126
|
-
toDecimalPlaces(decimalPlaces?: number, rounding?: Decimal.Rounding): Numeric;
|
|
127
|
-
toDP(decimalPlaces?: number, rounding?: Decimal.Rounding): Numeric;
|
|
128
|
-
toFraction(maxDenominator?: NumericValue): Numeric[];
|
|
129
|
-
toNearest(value: NumericValue, rounding?: Decimal.Rounding): Numeric;
|
|
130
|
-
toPower(value: NumericValue): Numeric;
|
|
131
|
-
pow(value: NumericValue): Numeric;
|
|
132
|
-
toSignificantDigits(decimalPlaces?: number, rounding?: Decimal.Rounding): Numeric;
|
|
133
|
-
toSD(decimalPlaces?: number, rounding?: Decimal.Rounding): Numeric;
|
|
134
|
-
truncated(): Numeric;
|
|
135
|
-
trunc(): Numeric;
|
|
136
|
-
inspect(depth: number, options: InspectOptionsStylized): string;
|
|
137
|
-
}
|
package/lib/numeric.js
DELETED
|
@@ -1,423 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Numeric = exports.toBigNumber = exports.toBigInteger = exports.toBN = exports.toBigInt = exports.toIntegerString = exports.toNumerics = exports.toNumeric = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const bignumber_1 = require("@ethersproject/bignumber");
|
|
6
|
-
const bytes_1 = require("@ethersproject/bytes");
|
|
7
|
-
require("big-integer");
|
|
8
|
-
const big_integer_1 = tslib_1.__importDefault(require("big-integer"));
|
|
9
|
-
require("bn.js");
|
|
10
|
-
const bn_js_1 = tslib_1.__importDefault(require("bn.js"));
|
|
11
|
-
const browser_or_node_1 = require("browser-or-node");
|
|
12
|
-
require("decimal.js");
|
|
13
|
-
const decimal_js_1 = require("decimal.js");
|
|
14
|
-
const toNumeric = (value) => new Numeric(value);
|
|
15
|
-
exports.toNumeric = toNumeric;
|
|
16
|
-
const toNumerics = (values) => values.map(exports.toNumeric);
|
|
17
|
-
exports.toNumerics = toNumerics;
|
|
18
|
-
const toIntegerString = (value) => (0, exports.toNumeric)(value).toFixed(0);
|
|
19
|
-
exports.toIntegerString = toIntegerString;
|
|
20
|
-
const toBigInt = (value) => BigInt((0, exports.toIntegerString)(value));
|
|
21
|
-
exports.toBigInt = toBigInt;
|
|
22
|
-
const toBN = (value) => new bn_js_1.default((0, exports.toIntegerString)(value));
|
|
23
|
-
exports.toBN = toBN;
|
|
24
|
-
const toBigInteger = (value) => (0, big_integer_1.default)((0, exports.toIntegerString)(value));
|
|
25
|
-
exports.toBigInteger = toBigInteger;
|
|
26
|
-
const toBigNumber = (value) => bignumber_1.BigNumber.from((0, exports.toIntegerString)(value));
|
|
27
|
-
exports.toBigNumber = toBigNumber;
|
|
28
|
-
// noinspection JSUnusedGlobalSymbols
|
|
29
|
-
class Numeric extends decimal_js_1.Decimal {
|
|
30
|
-
// private readonly toStringTag: string = 'Decimal';
|
|
31
|
-
constructor(value) {
|
|
32
|
-
if (value instanceof decimal_js_1.Decimal) {
|
|
33
|
-
super(value);
|
|
34
|
-
}
|
|
35
|
-
else {
|
|
36
|
-
switch (typeof value) {
|
|
37
|
-
case 'string':
|
|
38
|
-
case 'number':
|
|
39
|
-
super(value);
|
|
40
|
-
break;
|
|
41
|
-
case 'bigint':
|
|
42
|
-
super(value.toString());
|
|
43
|
-
break;
|
|
44
|
-
default:
|
|
45
|
-
if (big_integer_1.default.isInstance(value) || bignumber_1.BigNumber.isBigNumber(value) || bn_js_1.default.isBN(value)) {
|
|
46
|
-
super(value.toString());
|
|
47
|
-
}
|
|
48
|
-
else if ((0, bytes_1.isBytesLike)(value)) {
|
|
49
|
-
super((0, bytes_1.hexlify)(value));
|
|
50
|
-
}
|
|
51
|
-
else {
|
|
52
|
-
super(value);
|
|
53
|
-
}
|
|
54
|
-
break;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
// get [Symbol.toStringTag]() {
|
|
59
|
-
// return 'Numeric';
|
|
60
|
-
// }
|
|
61
|
-
static abs(value) {
|
|
62
|
-
return new Numeric(value).abs();
|
|
63
|
-
}
|
|
64
|
-
static acos(value) {
|
|
65
|
-
return new Numeric(value).acos();
|
|
66
|
-
}
|
|
67
|
-
static acosh(value) {
|
|
68
|
-
return new Numeric(value).acosh();
|
|
69
|
-
}
|
|
70
|
-
static add(x, y) {
|
|
71
|
-
return new Numeric(x).add(y);
|
|
72
|
-
}
|
|
73
|
-
static asin(value) {
|
|
74
|
-
return new Numeric(value).asin();
|
|
75
|
-
}
|
|
76
|
-
static asinh(value) {
|
|
77
|
-
return new Numeric(value).asinh();
|
|
78
|
-
}
|
|
79
|
-
static atan(value) {
|
|
80
|
-
return new Numeric(value).atan();
|
|
81
|
-
}
|
|
82
|
-
static atanh(value) {
|
|
83
|
-
return new Numeric(value).atanh();
|
|
84
|
-
}
|
|
85
|
-
static atan2(x, y) {
|
|
86
|
-
return new Numeric(decimal_js_1.Decimal.atan2(new Numeric(x), new Numeric(y)));
|
|
87
|
-
}
|
|
88
|
-
static cbrt(value) {
|
|
89
|
-
return new Numeric(value).cbrt();
|
|
90
|
-
}
|
|
91
|
-
static ceil(value) {
|
|
92
|
-
return new Numeric(value).ceil();
|
|
93
|
-
}
|
|
94
|
-
static clamp(value, min, max) {
|
|
95
|
-
return new Numeric(decimal_js_1.Decimal.clamp(new Numeric(value), new Numeric(min), new Numeric(max)));
|
|
96
|
-
}
|
|
97
|
-
static cos(value) {
|
|
98
|
-
return new Numeric(value).cos();
|
|
99
|
-
}
|
|
100
|
-
static cosh(value) {
|
|
101
|
-
return new Numeric(value).cosh();
|
|
102
|
-
}
|
|
103
|
-
static div(x, y) {
|
|
104
|
-
return new Numeric(x).div(y);
|
|
105
|
-
}
|
|
106
|
-
static exp(value) {
|
|
107
|
-
return new Numeric(value).exp();
|
|
108
|
-
}
|
|
109
|
-
static floor(value) {
|
|
110
|
-
return new Numeric(value).floor();
|
|
111
|
-
}
|
|
112
|
-
static hypot(...values) {
|
|
113
|
-
return new Numeric(decimal_js_1.Decimal.hypot(...(0, exports.toNumerics)(values)));
|
|
114
|
-
}
|
|
115
|
-
static ln(value) {
|
|
116
|
-
return new Numeric(value).ln();
|
|
117
|
-
}
|
|
118
|
-
static log(value, base) {
|
|
119
|
-
return new Numeric(value).log(base);
|
|
120
|
-
}
|
|
121
|
-
static log2(value) {
|
|
122
|
-
return new Numeric(value).log(2);
|
|
123
|
-
}
|
|
124
|
-
static log10(value) {
|
|
125
|
-
return new Numeric(value).log(10);
|
|
126
|
-
}
|
|
127
|
-
static max(...values) {
|
|
128
|
-
return new Numeric(decimal_js_1.Decimal.max(...(0, exports.toNumerics)(values)));
|
|
129
|
-
}
|
|
130
|
-
static min(...values) {
|
|
131
|
-
return new Numeric(decimal_js_1.Decimal.min(...(0, exports.toNumerics)(values)));
|
|
132
|
-
}
|
|
133
|
-
static mod(x, y) {
|
|
134
|
-
return new Numeric(x).mod(y);
|
|
135
|
-
}
|
|
136
|
-
static mul(x, y) {
|
|
137
|
-
return new Numeric(x).mul(y);
|
|
138
|
-
}
|
|
139
|
-
static pow(base, exponent) {
|
|
140
|
-
return new Numeric(base).pow(exponent);
|
|
141
|
-
}
|
|
142
|
-
static random(significantDigits) {
|
|
143
|
-
return new Numeric(decimal_js_1.Decimal.random(significantDigits));
|
|
144
|
-
}
|
|
145
|
-
static round(value) {
|
|
146
|
-
return new Numeric(value).round();
|
|
147
|
-
}
|
|
148
|
-
static set(object) {
|
|
149
|
-
return decimal_js_1.Decimal.set(object);
|
|
150
|
-
}
|
|
151
|
-
static sign(value) {
|
|
152
|
-
return decimal_js_1.Decimal.sign(new Numeric(value));
|
|
153
|
-
}
|
|
154
|
-
static sin(value) {
|
|
155
|
-
return new Numeric(value).sin();
|
|
156
|
-
}
|
|
157
|
-
static sinh(value) {
|
|
158
|
-
return new Numeric(value).sinh();
|
|
159
|
-
}
|
|
160
|
-
static sqrt(value) {
|
|
161
|
-
return new Numeric(value).sqrt();
|
|
162
|
-
}
|
|
163
|
-
static sub(x, y) {
|
|
164
|
-
return new Numeric(x).sub(y);
|
|
165
|
-
}
|
|
166
|
-
static sum(...values) {
|
|
167
|
-
return new Numeric(decimal_js_1.Decimal.sum(...(0, exports.toNumerics)(values)));
|
|
168
|
-
}
|
|
169
|
-
static tan(value) {
|
|
170
|
-
return new Numeric(value).tan();
|
|
171
|
-
}
|
|
172
|
-
static tanh(value) {
|
|
173
|
-
return new Numeric(value).tanh();
|
|
174
|
-
}
|
|
175
|
-
static trunc(value) {
|
|
176
|
-
return new Numeric(value).trunc();
|
|
177
|
-
}
|
|
178
|
-
absoluteValue() {
|
|
179
|
-
return new Numeric(super.absoluteValue());
|
|
180
|
-
}
|
|
181
|
-
abs() {
|
|
182
|
-
return new Numeric(super.abs());
|
|
183
|
-
}
|
|
184
|
-
ceil() {
|
|
185
|
-
return new Numeric(super.ceil());
|
|
186
|
-
}
|
|
187
|
-
clampedTo(min, max) {
|
|
188
|
-
return new Numeric(super.clampedTo(new Numeric(min), new Numeric(max)));
|
|
189
|
-
}
|
|
190
|
-
clamp(min, max) {
|
|
191
|
-
return new Numeric(super.clamp(new Numeric(min), new Numeric(max)));
|
|
192
|
-
}
|
|
193
|
-
comparedTo(value) {
|
|
194
|
-
return super.comparedTo(new Numeric(value));
|
|
195
|
-
}
|
|
196
|
-
cmp(value) {
|
|
197
|
-
return super.cmp(new Numeric(value));
|
|
198
|
-
}
|
|
199
|
-
cosine() {
|
|
200
|
-
return new Numeric(super.cosine());
|
|
201
|
-
}
|
|
202
|
-
cos() {
|
|
203
|
-
return new Numeric(super.cos());
|
|
204
|
-
}
|
|
205
|
-
cubeRoot() {
|
|
206
|
-
return new Numeric(super.cubeRoot());
|
|
207
|
-
}
|
|
208
|
-
cbrt() {
|
|
209
|
-
return new Numeric(super.cbrt());
|
|
210
|
-
}
|
|
211
|
-
dividedBy(value) {
|
|
212
|
-
return new Numeric(super.dividedBy(new Numeric(value)));
|
|
213
|
-
}
|
|
214
|
-
div(value) {
|
|
215
|
-
return new Numeric(super.div(new Numeric(value)));
|
|
216
|
-
}
|
|
217
|
-
dividedToIntegerBy(value) {
|
|
218
|
-
return new Numeric(super.dividedToIntegerBy(new Numeric(value)));
|
|
219
|
-
}
|
|
220
|
-
divToInt(value) {
|
|
221
|
-
return new Numeric(super.divToInt(new Numeric(value)));
|
|
222
|
-
}
|
|
223
|
-
equals(value) {
|
|
224
|
-
return super.equals(new Numeric(value));
|
|
225
|
-
}
|
|
226
|
-
eq(value) {
|
|
227
|
-
return super.eq(new Numeric(value));
|
|
228
|
-
}
|
|
229
|
-
floor() {
|
|
230
|
-
return new Numeric(super.floor());
|
|
231
|
-
}
|
|
232
|
-
greaterThan(value) {
|
|
233
|
-
return super.greaterThan(new Numeric(value));
|
|
234
|
-
}
|
|
235
|
-
gt(value) {
|
|
236
|
-
return super.gt(new Numeric(value));
|
|
237
|
-
}
|
|
238
|
-
greaterThanOrEqualTo(value) {
|
|
239
|
-
return super.greaterThanOrEqualTo(new Numeric(value));
|
|
240
|
-
}
|
|
241
|
-
gte(value) {
|
|
242
|
-
return super.gte(new Numeric(value));
|
|
243
|
-
}
|
|
244
|
-
hyperbolicCosine() {
|
|
245
|
-
return new Numeric(super.hyperbolicCosine());
|
|
246
|
-
}
|
|
247
|
-
cosh() {
|
|
248
|
-
return new Numeric(super.cosh());
|
|
249
|
-
}
|
|
250
|
-
hyperbolicSine() {
|
|
251
|
-
return new Numeric(super.hyperbolicSine());
|
|
252
|
-
}
|
|
253
|
-
sinh() {
|
|
254
|
-
return new Numeric(super.sinh());
|
|
255
|
-
}
|
|
256
|
-
hyperbolicTangent() {
|
|
257
|
-
return new Numeric(super.hyperbolicTangent());
|
|
258
|
-
}
|
|
259
|
-
tanh() {
|
|
260
|
-
return new Numeric(super.tanh());
|
|
261
|
-
}
|
|
262
|
-
inverseCosine() {
|
|
263
|
-
return new Numeric(super.inverseCosine());
|
|
264
|
-
}
|
|
265
|
-
acos() {
|
|
266
|
-
return new Numeric(super.acos());
|
|
267
|
-
}
|
|
268
|
-
inverseHyperbolicCosine() {
|
|
269
|
-
return new Numeric(super.inverseHyperbolicCosine());
|
|
270
|
-
}
|
|
271
|
-
acosh() {
|
|
272
|
-
return new Numeric(super.acosh());
|
|
273
|
-
}
|
|
274
|
-
inverseHyperbolicSine() {
|
|
275
|
-
return new Numeric(super.inverseHyperbolicSine());
|
|
276
|
-
}
|
|
277
|
-
asinh() {
|
|
278
|
-
return new Numeric(super.asinh());
|
|
279
|
-
}
|
|
280
|
-
inverseHyperbolicTangent() {
|
|
281
|
-
return new Numeric(super.inverseHyperbolicTangent());
|
|
282
|
-
}
|
|
283
|
-
atanh() {
|
|
284
|
-
return new Numeric(super.atanh());
|
|
285
|
-
}
|
|
286
|
-
inverseSine() {
|
|
287
|
-
return new Numeric(super.inverseSine());
|
|
288
|
-
}
|
|
289
|
-
asin() {
|
|
290
|
-
return new Numeric(super.asin());
|
|
291
|
-
}
|
|
292
|
-
inverseTangent() {
|
|
293
|
-
return new Numeric(super.inverseTangent());
|
|
294
|
-
}
|
|
295
|
-
atan() {
|
|
296
|
-
return new Numeric(super.atan());
|
|
297
|
-
}
|
|
298
|
-
lessThan(value) {
|
|
299
|
-
return super.lessThan(new Numeric(value));
|
|
300
|
-
}
|
|
301
|
-
lt(value) {
|
|
302
|
-
return super.lt(new Numeric(value));
|
|
303
|
-
}
|
|
304
|
-
lessThanOrEqualTo(value) {
|
|
305
|
-
return super.lessThanOrEqualTo(new Numeric(value));
|
|
306
|
-
}
|
|
307
|
-
lte(value) {
|
|
308
|
-
return super.lte(new Numeric(value));
|
|
309
|
-
}
|
|
310
|
-
logarithm(value) {
|
|
311
|
-
return new Numeric(super.logarithm(undefined === value ? undefined : new Numeric(value)));
|
|
312
|
-
}
|
|
313
|
-
log(value) {
|
|
314
|
-
return new Numeric(super.log(undefined === value ? undefined : new Numeric(value)));
|
|
315
|
-
}
|
|
316
|
-
minus(value) {
|
|
317
|
-
return new Numeric(super.minus(new Numeric(value)));
|
|
318
|
-
}
|
|
319
|
-
sub(value) {
|
|
320
|
-
return new Numeric(super.sub(new Numeric(value)));
|
|
321
|
-
}
|
|
322
|
-
modulo(value) {
|
|
323
|
-
return new Numeric(super.modulo(new Numeric(value)));
|
|
324
|
-
}
|
|
325
|
-
mod(value) {
|
|
326
|
-
return new Numeric(super.mod(new Numeric(value)));
|
|
327
|
-
}
|
|
328
|
-
naturalExponential() {
|
|
329
|
-
return new Numeric(super.naturalExponential());
|
|
330
|
-
}
|
|
331
|
-
exp() {
|
|
332
|
-
return new Numeric(super.exp());
|
|
333
|
-
}
|
|
334
|
-
naturalLogarithm() {
|
|
335
|
-
return new Numeric(super.naturalLogarithm());
|
|
336
|
-
}
|
|
337
|
-
ln() {
|
|
338
|
-
return new Numeric(super.ln());
|
|
339
|
-
}
|
|
340
|
-
negated() {
|
|
341
|
-
return new Numeric(super.negated());
|
|
342
|
-
}
|
|
343
|
-
neg() {
|
|
344
|
-
return new Numeric(super.neg());
|
|
345
|
-
}
|
|
346
|
-
plus(value) {
|
|
347
|
-
return new Numeric(super.plus(new Numeric(value)));
|
|
348
|
-
}
|
|
349
|
-
add(value) {
|
|
350
|
-
return new Numeric(super.add(new Numeric(value)));
|
|
351
|
-
}
|
|
352
|
-
round() {
|
|
353
|
-
return new Numeric(super.round());
|
|
354
|
-
}
|
|
355
|
-
sine() {
|
|
356
|
-
return new Numeric(super.sine());
|
|
357
|
-
}
|
|
358
|
-
sin() {
|
|
359
|
-
return new Numeric(super.sin());
|
|
360
|
-
}
|
|
361
|
-
squareRoot() {
|
|
362
|
-
return new Numeric(super.squareRoot());
|
|
363
|
-
}
|
|
364
|
-
sqrt() {
|
|
365
|
-
return new Numeric(super.sqrt());
|
|
366
|
-
}
|
|
367
|
-
tangent() {
|
|
368
|
-
return new Numeric(super.tangent());
|
|
369
|
-
}
|
|
370
|
-
tan() {
|
|
371
|
-
return new Numeric(super.tan());
|
|
372
|
-
}
|
|
373
|
-
times(value) {
|
|
374
|
-
return new Numeric(super.times(new Numeric(value)));
|
|
375
|
-
}
|
|
376
|
-
mul(value) {
|
|
377
|
-
return new Numeric(super.mul(new Numeric(value)));
|
|
378
|
-
}
|
|
379
|
-
toDecimalPlaces(decimalPlaces, rounding) {
|
|
380
|
-
return new Numeric(undefined !== rounding && undefined !== decimalPlaces
|
|
381
|
-
? super.toDecimalPlaces(decimalPlaces, rounding)
|
|
382
|
-
: super.toDecimalPlaces(decimalPlaces));
|
|
383
|
-
}
|
|
384
|
-
toDP(decimalPlaces, rounding) {
|
|
385
|
-
return new Numeric(undefined !== rounding && undefined !== decimalPlaces
|
|
386
|
-
? super.toDP(decimalPlaces, rounding)
|
|
387
|
-
: super.toDP(decimalPlaces));
|
|
388
|
-
}
|
|
389
|
-
toFraction(maxDenominator) {
|
|
390
|
-
return (0, exports.toNumerics)(super.toFraction(undefined === maxDenominator ? undefined : new Numeric(maxDenominator)));
|
|
391
|
-
}
|
|
392
|
-
toNearest(value, rounding) {
|
|
393
|
-
return new Numeric(super.toNearest(new Numeric(value), rounding));
|
|
394
|
-
}
|
|
395
|
-
toPower(value) {
|
|
396
|
-
return new Numeric(super.toPower(new Numeric(value)));
|
|
397
|
-
}
|
|
398
|
-
pow(value) {
|
|
399
|
-
return new Numeric(super.pow(new Numeric(value)));
|
|
400
|
-
}
|
|
401
|
-
toSignificantDigits(decimalPlaces, rounding) {
|
|
402
|
-
return new Numeric(undefined !== rounding && undefined !== decimalPlaces
|
|
403
|
-
? super.toSignificantDigits(decimalPlaces, rounding)
|
|
404
|
-
: super.toSignificantDigits(decimalPlaces));
|
|
405
|
-
}
|
|
406
|
-
toSD(decimalPlaces, rounding) {
|
|
407
|
-
return new Numeric(undefined !== rounding && undefined !== decimalPlaces
|
|
408
|
-
? super.toSD(decimalPlaces, rounding)
|
|
409
|
-
: super.toSD(decimalPlaces));
|
|
410
|
-
}
|
|
411
|
-
truncated() {
|
|
412
|
-
return new Numeric(super.truncated());
|
|
413
|
-
}
|
|
414
|
-
trunc() {
|
|
415
|
-
return new Numeric(super.trunc());
|
|
416
|
-
}
|
|
417
|
-
inspect(depth, options) {
|
|
418
|
-
const value = this.toFixed();
|
|
419
|
-
return browser_or_node_1.isNode ? options.stylize(value, 'bigint') : value;
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
exports.Numeric = Numeric;
|
|
423
|
-
//# sourceMappingURL=numeric.js.map
|
package/lib/numeric.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"numeric.js","sourceRoot":"","sources":["../root/numeric.ts"],"names":[],"mappings":"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"}
|