forked from MikeMcl/bignumber.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
15 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,9 @@ A JavaScript library for arbitrary-precision decimal and non-decimal arithmetic. | |
- Faster, smaller, and perhaps easier to use than JavaScript versions of Java's BigDecimal | ||
- 5 KB minified and gzipped | ||
- Simple API but full-featured | ||
- Works with numbers with or without fraction digits in bases from 2 to 36 inclusive | ||
- Works with numbers with or without fraction digits in bases from 2 to 64 inclusive | ||
- Replicates the `toExponential`, `toFixed`, `toPrecision` and `toString` methods of JavaScript's Number type | ||
- Includes a `toFraction` and a `squareRoot` method | ||
- Includes a `toFraction` and a correctly-rounded `squareRoot` method | ||
- Stores values in an accessible decimal floating point format | ||
- No dependencies | ||
- Comprehensive documentation and test set | ||
|
@@ -193,14 +193,13 @@ will create *bignumber.min.js*. | |
|
||
## Feedback | ||
|
||
Bugs: surely not! Open an issue, please. | ||
Other feedback to: | ||
Open an issue, or email | ||
|
||
Michael | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
|
||
Bitcoin donation to: | ||
**1KdnpLRSkWJs4FXPzj7pQ39H4Ur6Urydti** | ||
**1CauoGYrEoJFhcyxGVaiLTE6f3WCaSUjnm** | ||
Thank you | ||
|
||
## Licence | ||
|
@@ -211,8 +210,12 @@ See LICENCE. | |
|
||
## Change Log | ||
|
||
####1.3.0 | ||
* 08/11/2013 Ensure correct rounding of `sqrt` in all, rather than almost all, cases. | ||
* Maximum radix to 64. | ||
|
||
####1.2.1 | ||
* 17/10/2013 Bugfix: sign of zero when x < 0 and x + (-x) = 0. | ||
* 17/10/2013 Sign of zero when x < 0 and x + (-x) = 0. | ||
|
||
####1.2.0 | ||
* 19/9/2013 Throw Error objects for stack. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* bignumber.js v1.2.1 https://github.com/MikeMcl/bignumber.js/LICENCE */ | ||
/* bignumber.js v1.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ | ||
;(function ( global ) { | ||
'use strict'; | ||
|
||
/* | ||
bignumber.js v1.2.1 | ||
bignumber.js v1.3.0 | ||
A JavaScript library for arbitrary-precision arithmetic. | ||
https://github.com/MikeMcl/bignumber.js | ||
Copyright (c) 2012 Michael Mclaughlin <[email protected]> | ||
|
Oops, something went wrong.