This commit is contained in:
Michael Mclaughlin 2014-11-13 23:23:45 +00:00
parent 5bcec4a44b
commit e8130405e4
4 changed files with 10 additions and 6 deletions

View File

@ -13,6 +13,7 @@ A JavaScript library for arbitrary-precision decimal and non-decimal arithmetic.
- Replicates the `toExponential`, `toFixed`, `toPrecision` and `toString` methods of JavaScript's Number type
- Includes a `toFraction` and a correctly-rounded `squareRoot` method
- No dependencies
- ECMAScript 3 compliant
- Comprehensive [documentation](http://mikemcl.github.io/bignumber.js/) and test set
If an even smaller and simpler library is required see [big.js](https://github.com/MikeMcl/big.js/).
@ -212,6 +213,9 @@ See LICENCE.
## Change Log
####1.5.0
* 13/11/2014 Added `toJSON` and `decimalPlaces` methods.
####1.4.1
* 08/06/2014 Amend README.

View File

@ -1,10 +1,10 @@
/*! bignumber.js v1.4.1 https://github.com/MikeMcl/bignumber.js/LICENCE */
/*! bignumber.js v1.5.0 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function ( global ) {
'use strict';
/*
bignumber.js v1.4.1
bignumber.js v1.5.0
A JavaScript library for arbitrary-precision arithmetic.
https://github.com/MikeMcl/bignumber.js
Copyright (c) 2012 Michael Mclaughlin <M8ch88l@gmail.com>

4
bignumber.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "1.4.1",
"version": "1.5.0",
"keywords": [
"arbitrary",
"precision",
@ -31,6 +31,6 @@
"license": "MIT",
"scripts": {
"test": "node ./test/every-test.js",
"build": "uglifyjs bignumber.js -c -m -o bignumber.min.js --preamble '/* bignumber.js v1.4.1 https://github.com/MikeMcl/bignumber.js/LICENCE */'"
"build": "uglifyjs bignumber.js -c -m -o bignumber.min.js --preamble '/* bignumber.js v1.5.0 https://github.com/MikeMcl/bignumber.js/LICENCE */'"
}
}