7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
(BigInt.prototype as any).toJSON = function () {
|
|
const int = Number.parseInt(this.toString());
|
|
return int ?? this.toString();
|
|
};
|
|
|
|
export {};
|