You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MikeMcl_decimal.js/README.md

244 lines
7.4 KiB

10 years ago
![decimal.js](https://raw.githubusercontent.com/MikeMcl/decimal.js/gh-pages/decimaljs.png)
An arbitrary-precision Decimal type for JavaScript.
4 years ago
[![npm version](https://img.shields.io/npm/v/decimal.js.svg)](https://www.npmjs.com/package/decimal.js)
[![npm downloads](https://img.shields.io/npm/dw/decimal.js)](https://www.npmjs.com/package/decimal.js)
10 years ago
[![Build Status](https://travis-ci.org/MikeMcl/decimal.js.svg)](https://travis-ci.org/MikeMcl/decimal.js)
[![CDNJS](https://img.shields.io/cdnjs/v/decimal.js.svg)](https://cdnjs.com/libraries/decimal.js)
7 years ago
<br>
10 years ago
## Features
- Integers and floats
9 years ago
- 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
10 years ago
- Faster, smaller, and perhaps easier to use than JavaScript versions of Java's BigDecimal
- No dependencies
- Wide platform compatibility: uses JavaScript 1.5 (ECMAScript 3) features only
- Comprehensive [documentation](https://mikemcl.github.io/decimal.js/) and test set
7 years ago
- Includes a TypeScript declaration file: *decimal.d.ts*
10 years ago
![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
8 years ago
precision is specified in terms of significant digits rather than decimal places, and all
10 years ago
calculations are rounded to the precision (similar to Python's decimal module) rather than just
those involving division.
This library also adds the trigonometric functions, among others, and supports non-integer powers,
which makes it a significantly larger library than *bignumber.js* and the even smaller
[big.js](https://github.com/MikeMcl/big.js/).
10 years ago
3 years ago
For a lighter version of this library without the trigonometric functions see
[decimal.js-light](https://github.com/MikeMcl/decimal.js-light/).
8 years ago
10 years ago
## Load
4 years ago
The library is the single JavaScript file *decimal.js* or ES module *decimal.mjs*.
10 years ago
7 years ago
Browser:
```html
<script src='path/to/decimal.js'></script>
```
3 years ago
or
4 years ago
```html
<script type="module">
import Decimal from './path/to/decimal.mjs';
...
</script>
```
[Node.js](https://nodejs.org):
7 years ago
```bash
3 years ago
npm install decimal.js
7 years ago
```
```js
var Decimal = require('decimal.js');
```
3 years ago
or
7 years ago
```js
3 years ago
import Decimal from 'decimal.js';
```
3 years ago
or
```js
3 years ago
import {Decimal} from 'decimal.js';
```
10 years ago
## 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.*
9 years ago
The library exports a single function object, `Decimal`, the constructor of Decimal instances.
10 years ago
9 years ago
It accepts a value of type number, string or Decimal.
```js
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
```
9 years ago
A value can also be in binary, hexadecimal or octal if the appropriate prefix is included.
```js
x = new Decimal('0xff.f') // '255.9375'
y = new Decimal('0b10101100') // '172'
z = x.plus(y) // '427.9375'
z.toBinary() // '0b110101011.1111'
z.toBinary(13) // '0b1.101010111111p+8'
```
7 years ago
Using binary exponential notation to create a Decimal with the value of `Number.MAX_VALUE`:
```js
x = new Decimal('0b1.1111111111111111111111111111111111111111111111111111p+1023')
```
10 years ago
A Decimal is immutable in the sense that it is not changed by its methods.
```js
0.3 - 0.1 // 0.19999999999999998
x = new Decimal(0.3)
x.minus(0.1) // '0.2'
x // '0.3'
```
10 years ago
The methods that return a Decimal can be chained.
```js
x.dividedBy(y).plus(z).times(9).floor()
x.times('1.23456780123456789e+9').plus(9876.5432321).dividedBy('4_444_562_598.111772').ceil()
```
10 years ago
Many method names have a shorter alias.
```js
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
```
9 years ago
Like JavaScript's Number type, there are `toExponential`, `toFixed` and `toPrecision` methods,
```js
x = new Decimal(255.5)
x.toExponential(5) // '2.55500e+2'
x.toFixed(5) // '255.50000'
x.toPrecision(5) // '255.50'
```
and almost all of the methods of JavaScript's Math object are also replicated.
```js
Decimal.sqrt('6.98372465832e+9823') // '8.3568682281821340204e+4911'
Decimal.pow(2, 0.0979843) // '1.0702770511687781839'
```
9 years ago
There are `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values,
```js
x = new Decimal(NaN) // 'NaN'
y = new Decimal(Infinity) // 'Infinity'
x.isNaN() && !y.isNaN() && !x.isFinite() && !y.isFinite() // true
```
9 years ago
and a `toFraction` method with an optional *maximum denominator* argument
```js
z = new Decimal(355)
pi = z.dividedBy(113) // '3.1415929204'
pi.toFraction() // [ '7853982301', '2500000000' ]
pi.toFraction(1000) // [ '355', '113' ]
```
3 years ago
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.
3 years ago
For advanced usage, multiple Decimal constructors can be created, each with their own independent
configuration which applies to all Decimal numbers created from it.
```js
// Set the precision and rounding of the default Decimal constructor
8 years ago
Decimal.set({ precision: 5, rounding: 4 })
10 years ago
// Create another Decimal constructor, optionally passing in a configuration object
7 years ago
Decimal9 = Decimal.clone({ precision: 9, rounding: 1 })
10 years ago
x = new Decimal(5)
7 years ago
y = new Decimal9(5)
10 years ago
x.div(3) // '1.6667'
7 years ago
y.div(3) // '1.66666666'
```
9 years ago
The value of a Decimal is stored in a floating point format in terms of its digits, exponent and sign.
```js
x = new Decimal(-12345.67);
x.d // [ 12345, 6700000 ] digits (base 10000000)
x.e // 4 exponent (base 10)
x.s // -1 sign
```
10 years ago
For further information see the [API](http://mikemcl.github.io/decimal.js/) reference in the *doc* directory.
## Test
9 years ago
The library can be tested using Node.js or a browser.
10 years ago
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.
10 years ago
9 years ago
To run all the tests, from a command-line at the root directory using npm
```bash
3 years ago
npm test
```
9 years ago
or at the *test* directory using Node
```bash
3 years ago
node test
```
9 years ago
Each separate test module can also be executed individually, for example, at the *test/modules* directory
```bash
3 years ago
node toFraction
```
10 years ago
3 years ago
## Minify
10 years ago
3 years ago
The minified version of *decimal.js* and its associated source map found in this repository was created with
[uglify-js](https://github.com/mishoo/UglifyJS) using
```bash
npm install uglify-js -g
3 years ago
uglifyjs decimal.js --source-map url=decimal.min.js.map --compress --mangle --output decimal.min.js
```
3 years ago
The minified version of *decimal.mjs* and its associated source map found in this repository was created with
[terser](https://github.com/terser/terser) using
```bash
3 years ago
npm install terser -g
terser decimal.mjs --source-map url=decimal.min.mjs.map -c -m --toplevel -o decimal.min.mjs
```
3 years ago
```js
import Decimal from './decimal.min.mjs';
```
10 years ago
## Licence
8 years ago
MIT.
10 years ago
9 years ago
See *LICENCE.md*