-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBigNumber.js
More file actions
198 lines (198 loc) · 6.29 KB
/
BigNumber.js
File metadata and controls
198 lines (198 loc) · 6.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
"use strict";
// BigInt?
function equals_undefined($any) {
return $any === undefined || $any === null;
}
class BigNumber {
int = 0n;
Float = 0;
sign = '+';
constructor(any, float) {
const $any = any;
let dont_change_the_sign = Boolean();
if ((typeof any) === 'symbol')
throw new Error('Symbol() has been explicitly disallowed to be passed in the BigNumber.constructor');
if (!equals_undefined(float)) {
const integerPart = Math.trunc(Number(float));
this.Float = Number(float) - integerPart;
this.int += this._toBigInt(integerPart) + this._toBigInt(any);
}
else
switch (typeof any) {
case 'string':
//let $int: string = ''; let $float: string = '';
const matches = any.match(/^([+\-]?)(\d+)(?:n?\.(\d+))?n?$/);
if (matches) {
try {
this.int = BigInt(matches[2]);
}
catch (Error) {
this.int = BigInt(0);
}
if (matches[3] === undefined) {
this.Float = Number('0.0');
}
else {
this.Float = Number(`0.${matches[3]}`);
}
if (matches[1] === '+' || matches[1] === '-') {
dont_change_the_sign = true;
this.sign = matches[1];
}
else if (matches[1] === '') {
dont_change_the_sign = true;
this.sign = '+';
}
}
else {
this.Float = NaN;
}
break;
case 'bigint':
this.int = BigInt($any);
this.Float = Number(0);
break;
case 'boolean':
case 'number':
this.int = BigInt(0);
this.Float = Number($any);
break;
case 'undefined':
this.int = BigInt(0);
this.Float = 0;
break;
default:
if ($any instanceof BigNumber) {
const [i, f] = $any.valueOf_this();
this.Float = Number(f);
this.int = BigInt(i);
break;
}
else {
const int = Number(this.int = this._toBigInt($any));
this.Float = Number($any) - int;
}
}
const integerPart = Math.trunc(this.Float);
this.Float = this.Float - integerPart;
this.int += this._toBigInt(integerPart);
if (!dont_change_the_sign)
switch (Math.sign(Number(this.int))) {
case +1:
case +0:
this.sign = '+';
break;
case -1:
case -0:
this.sign = '-';
break;
}
if (this.int < 0)
this.int = -this.int;
if (this.Float < 0)
this.Float = -this.Float;
}
_toBigInt(n) {
try {
return BigInt(n);
}
catch (_) {
return 0n;
}
}
toString(withN = false) {
if (this.Float !== this.Float)
return 'NaN';
let result = String(this.int) + (withN ? 'n' : '');
if (this.Float !== 0) {
result += `.${this.Float.toString().split('.')[1]}`;
}
return `${this.sign}${result}`;
}
plus(mixed) {
if (mixed !== mixed) {
throw new Error('we cannot add to NaN');
}
else if (mixed instanceof BigNumber) {
return new BigNumber(this.getINT() + mixed.getINT(), this.getFloat() + mixed.getFloat());
}
else if (typeof mixed === 'bigint') {
return new BigNumber(this.getINT() + mixed, this.getFloat());
}
else if (typeof mixed === 'number') {
return new BigNumber(this.getINT(), this.getFloat() + mixed);
}
else {
throw new TypeError("'mixed' is not of type BigInt, Number, or BigNumber");
}
}
negate() {
return new BigNumber(-this.getINT(), this.getFloat());
}
valueOf() {
return +this.toString();
}
valueOf_this() {
return [this.int, this.Float];
}
getFloat() {
return Number(`${this.sign}${this.Float}`);
}
getINT() {
return BigInt(`${this.sign}${this.int}`);
}
// Math.
Math_floor() {
switch (this.sign) {
case "+":
return this.getINT();
case "-":
if (this.getFloat() !== 0) {
return -this.getINT() + 1n;
}
else {
return -this.getINT();
}
}
}
Math_ceil() {
switch (this.sign) {
case "-":
return -this.getINT();
case "+":
if (this.getFloat() !== 0) {
return this.getINT() + 1n;
}
else {
return this.getINT();
}
}
}
Math_round() {
return BigInt((new BigNumber(this.getINT(), Math.round(this.getFloat()))).getINT());
//BigInt(`${this.sign}${bigint}`);
}
Math_trunc() {
return this.getINT();
}
toJSON() {
return this.toString(true);
}
}
function isSafeBigInteger(n, Strict = false) {
if (n === null)
return false;
if ((typeof n) === 'string') {
n = String(n).replace(/n$/, '');
}
if (Strict) {
n = BigInt(n);
}
return (n <= BigInt(Number.MAX_SAFE_INTEGER) && n >= BigInt(Number.MIN_SAFE_INTEGER));
}
function isSafeBigIntOnly(n) {
if ((typeof n) === 'bigint' || (typeof n) === 'number') {
return (n <= BigInt(Number.MAX_SAFE_INTEGER) && n >= BigInt(Number.MIN_SAFE_INTEGER));
}
return false;
}