2014-04-02 15:28:08 +00:00
![decimal.js ](https://raw.githubusercontent.com/MikeMcl/decimal.js/gh-pages/decimaljs.png )
An arbitrary-precision Decimal type for JavaScript.
2016-02-04 23:52:52 +00:00
*WARNING: Version 5 brings significant API changes (see CHANGELOG). Version 4 will continue to be supported.*
2014-11-11 10:44:42 +00:00
< br >
[![Build Status ](https://travis-ci.org/MikeMcl/decimal.js.svg )](https://travis-ci.org/MikeMcl/decimal.js)
2014-04-02 15:28:08 +00:00
## Features
2016-01-25 00:11:32 +00:00
- Integers and floats
- Simple but full-featured API
- Replicates many of the methods of JavaScript's `Number.prototype` and `Math` objects
- Also handles hexadecimal, binary and octal values
2016-01-26 00:01:20 +00:00
- Supports serialization of Decimals to a compact base-88 format for transmission or persistence
2014-04-02 15:28:08 +00:00
- Faster, smaller, and perhaps easier to use than JavaScript versions of Java's BigDecimal
- No dependencies
2014-04-10 18:30:38 +00:00
- Wide platform compatibility: uses JavaScript 1.5 (ECMAScript 3) features only
2014-04-02 15:28:08 +00:00
- Comprehensive [documentation ](http://mikemcl.github.io/decimal.js/ ) and test set
![API ](https://raw.githubusercontent.com/MikeMcl/decimal.js/gh-pages/API.png )
The library is similar to [bignumber.js ](https://github.com/MikeMcl/bignumber.js/ ), but here
precision is specified in terms of significant digits instead of decimal places, and all
calculations are rounded to the precision (similar to Python's decimal module) rather than just
those involving division.
2016-01-25 00:11:32 +00:00
This library also adds the trigonometric functions, among others, and supports non-integer powers.
2014-04-02 15:28:08 +00:00
Another major difference is that this library enables multiple Decimal constructors to be created
2014-11-10 16:00:14 +00:00
each with their own configuration. This is, however, a significantly larger library than
*bignumber.js* and the even smaller [big.js ](https://github.com/MikeMcl/big.js/ ).
2014-04-02 15:28:08 +00:00
## Load
The library is the single JavaScript file *decimal.js* (or minified, *decimal.min.js* ).
2016-01-25 00:11:32 +00:00
It can be loaded using a script tag in an HTML document for the browser
2016-02-23 10:07:52 +00:00
```html
< script src = 'path/to/decimal.js' > < / script >
```
2016-01-25 00:11:32 +00:00
or as a [Node.js ](http://nodejs.org ) module using `require` .
2016-02-23 10:07:52 +00:00
```javascript
var Decimal = require('decimal');
```
2016-01-25 00:11:32 +00:00
For Node, the library is available from the [npm ](https://npmjs.org/ ) registry
2016-02-23 10:07:52 +00:00
```bash
$ npm install decimal.js
```
2014-04-02 15:28:08 +00:00
To load with AMD loader libraries such as [requireJS ](http://requirejs.org/ ):
2016-02-23 10:07:52 +00:00
```javascript
require(['decimal'], function(Decimal) {
// Use Decimal here in local scope. No global Decimal.
});
```
2014-04-02 15:28:08 +00:00
## Use
*In all examples below, `var` , semicolons and `toString` calls are not shown.
If a commented-out value is in quotes it means `toString` has been called on the preceding expression.*
2016-01-25 00:11:32 +00:00
The library exports a single function object, `Decimal` , the constructor of Decimal instances.
2014-04-02 15:28:08 +00:00
2016-01-25 00:11:32 +00:00
It accepts a value of type number, string or Decimal.
2016-02-23 10:07:52 +00:00
```javascript
x = new Decimal(123.4567)
y = new Decimal('123456.7e-3')
z = new Decimal(x)
x.equals(y) & & y.equals(z) & & x.equals(z) // true
```
2016-01-25 00:11:32 +00:00
A value can also be in binary, hexadecimal or octal if the appropriate prefix is included.
2016-02-23 10:07:52 +00:00
```javascript
x = new Decimal('0xff.f') // '255.9375'
y = new Decimal('0b10101100') // '172'
z = x.plus(y) // '427.9375'
2016-01-25 00:11:32 +00:00
2016-02-23 10:07:52 +00:00
z.toBinary() // '0b110101011.1111'
z.toBinary(13) // '0b1.101010111111p+8'
```
2014-04-02 15:28:08 +00:00
A Decimal is immutable in the sense that it is not changed by its methods.
2016-02-23 10:07:52 +00:00
```javascript
0.3 - 0.1 // 0.19999999999999998
x = new Decimal(0.3)
x.minus(0.1) // '0.2'
x // '0.3'
```
2014-04-02 15:28:08 +00:00
The methods that return a Decimal can be chained.
2016-02-23 10:07:52 +00:00
```javascript
x.dividedBy(y).plus(z).times(9).floor()
x.times('1.23456780123456789e+9').plus(9876.5432321).dividedBy('4444562598.111772').ceil()
```
2014-04-02 15:28:08 +00:00
Many method names have a shorter alias.
2016-02-23 10:07:52 +00:00
```javascript
x.squareRoot().dividedBy(y).toPower(3).equals(x.sqrt().div(y).pow(3)) // true
x.cmp(y.mod(z).neg()) == 1 & & x.comparedTo(y.modulo(z).negated()) == 1 // true
```
2016-01-25 00:11:32 +00:00
Like JavaScript's Number type, there are `toExponential` , `toFixed` and `toPrecision` methods,
2016-02-23 10:07:52 +00:00
```javascript
x = new Decimal(255.5)
x.toExponential(5) // '2.55500e+2'
x.toFixed(5) // '255.50000'
x.toPrecision(5) // '255.50'
```
2016-01-25 00:11:32 +00:00
and many of the methods of JavaScript's Math object are also replicated.
2016-02-23 10:07:52 +00:00
```javascript
Decimal.sqrt('6.98372465832e+9823') // '8.3568682281821340204e+4911'
Decimal.pow(2, 0.0979843) // '1.0702770511687781839'
```
2016-01-25 00:11:32 +00:00
There are `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values,
2016-02-23 10:07:52 +00:00
```javascript
x = new Decimal(NaN) // 'NaN'
y = new Decimal(Infinity) // 'Infinity'
x.isNaN() & & !y.isNaN() & & !x.isFinite() & & !y.isFinite() // true
```
2016-01-25 00:11:32 +00:00
and a `toFraction` method with an optional *maximum denominator* argument
2016-02-23 10:07:52 +00:00
```javascript
z = new Decimal(355)
pi = z.dividedBy(113) // '3.1415929204'
pi.toFraction() // [ '7853982301', '2500000000' ]
pi.toFraction(1000) // [ '355', '113' ]
```
2014-11-10 16:00:14 +00:00
All calculations are rounded according to the number of significant digits and rounding mode
specified by the `precision` and `rounding` properties of the Decimal constructor.
2014-04-10 18:30:38 +00:00
2014-04-02 15:28:08 +00:00
As mentioned above, multiple Decimal constructors can be created, each with their own independent
configuration which applies to all Decimal numbers created from it.
2016-02-23 10:07:52 +00:00
```javascript
// Set the precision and rounding of the default Decimal constructor
Decimal.config({ precision: 5, rounding: 4 })
2014-04-02 15:28:08 +00:00
2016-02-23 10:07:52 +00:00
// Create another Decimal constructor, optionally passing in a configuration object
Decimal10 = Decimal.clone({ precision: 10, rounding: 1 })
2014-04-02 15:28:08 +00:00
2016-02-23 10:07:52 +00:00
x = new Decimal(5)
y = new Decimal10(5)
2014-04-02 15:28:08 +00:00
2016-02-23 10:07:52 +00:00
x.div(3) // '1.6667'
y.div(3) // '1.666666666'
```
2016-01-25 00:11:32 +00:00
The value of a Decimal is stored in a floating point format in terms of its digits, exponent and sign.
2016-02-23 10:07:52 +00:00
```javascript
x = new Decimal(-12345.67);
x.d // [ 12345, 6700000 ] digits (base 10000)
x.e // 4 exponent (base 10)
x.s // -1 sign
```
2014-04-02 15:28:08 +00:00
For further information see the [API ](http://mikemcl.github.io/decimal.js/ ) reference in the *doc* directory.
## Test
2016-01-25 00:11:32 +00:00
The library can be tested using Node.js or a browser.
2014-04-02 15:28:08 +00:00
2016-01-25 00:11:32 +00:00
The *test* directory contains the file *test.js* which runs all the tests when executed by Node, and the file *test.html* which runs all the tests when opened in a browser.
2014-04-02 15:28:08 +00:00
2016-01-25 00:11:32 +00:00
To run all the tests, from a command-line at the root directory using npm
2016-02-23 10:07:52 +00:00
```bash
$ npm test
```
2016-01-25 00:11:32 +00:00
or at the *test* directory using Node
2016-02-23 10:07:52 +00:00
```bash
$ node test
```
2016-01-25 00:11:32 +00:00
Each separate test module can also be executed individually, for example, at the *test/modules* directory
2016-02-23 10:07:52 +00:00
```bash
$ node toFraction
```
2014-04-02 15:28:08 +00:00
## Build
For Node, if [uglify-js ](https://github.com/mishoo/UglifyJS2 ) is installed
2016-02-23 10:07:52 +00:00
```bash
npm install uglify-js -g
```
2014-04-02 15:28:08 +00:00
then
2016-02-23 10:07:52 +00:00
```bash
npm run build
```
2016-01-25 00:11:32 +00:00
will create *decimal.min.js* , and a source map will also be added to the *doc* directory.
2014-04-02 15:28:08 +00:00
## Feedback
2016-01-25 00:11:32 +00:00
< a href = 'mailto:M8ch88l@gmail.com' > M8ch88l@gmail.com< / a >
2014-04-02 15:28:08 +00:00
2016-01-25 00:11:32 +00:00
BTC 16MjxmTB5EZxY5Uk9xyhfsu4n9gYxEJYkY
2014-04-02 15:28:08 +00:00
## Licence
MIT Expat.
2016-01-25 00:11:32 +00:00
See *LICENCE.md*