mirror of
https://github.com/MikeMcl/decimal.js.git
synced 2024-10-27 20:34:12 +00:00
Compare commits
No commits in common. "master" and "v10.4.2" have entirely different histories.
@ -1,7 +1,3 @@
|
|||||||
#### 10.4.3
|
|
||||||
* 04/12/2022
|
|
||||||
* #211 Remove `toStringTag` declaration for type compatibility.
|
|
||||||
|
|
||||||
#### 10.4.2
|
#### 10.4.2
|
||||||
* 12/10/2022
|
* 12/10/2022
|
||||||
* #209 Correct return type.
|
* #209 Correct return type.
|
||||||
|
1
decimal.d.ts
vendored
1
decimal.d.ts
vendored
@ -56,6 +56,7 @@ export declare class Decimal {
|
|||||||
readonly d: number[];
|
readonly d: number[];
|
||||||
readonly e: number;
|
readonly e: number;
|
||||||
readonly s: number;
|
readonly s: number;
|
||||||
|
private readonly toStringTag: string;
|
||||||
|
|
||||||
constructor(n: Decimal.Value);
|
constructor(n: Decimal.Value);
|
||||||
|
|
||||||
|
1
decimal.global.d.ts
vendored
1
decimal.global.d.ts
vendored
@ -77,6 +77,7 @@ export declare class Decimal {
|
|||||||
readonly d: number[];
|
readonly d: number[];
|
||||||
readonly e: number;
|
readonly e: number;
|
||||||
readonly s: number;
|
readonly s: number;
|
||||||
|
private readonly toStringTag: string;
|
||||||
|
|
||||||
constructor(n: DecimalValue);
|
constructor(n: DecimalValue);
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* decimal.js v10.4.3
|
* decimal.js v10.4.2
|
||||||
* An arbitrary-precision Decimal type for JavaScript.
|
* An arbitrary-precision Decimal type for JavaScript.
|
||||||
* https://github.com/MikeMcl/decimal.js
|
* https://github.com/MikeMcl/decimal.js
|
||||||
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*!
|
/*!
|
||||||
* decimal.js v10.4.3
|
* decimal.js v10.4.2
|
||||||
* An arbitrary-precision Decimal type for JavaScript.
|
* An arbitrary-precision Decimal type for JavaScript.
|
||||||
* https://github.com/MikeMcl/decimal.js
|
* https://github.com/MikeMcl/decimal.js
|
||||||
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "decimal.js",
|
"name": "decimal.js",
|
||||||
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
||||||
"version": "10.4.3",
|
"version": "10.4.2",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"arbitrary",
|
"arbitrary",
|
||||||
"precision",
|
"precision",
|
||||||
|
Loading…
Reference in New Issue
Block a user