bignum-native
v0.0.3
Published
An implementation of arbitrary-precision arithmetic using JavaScript's native BigInt type
Downloads
2
Maintainers
Readme
BigNum-Native
BigNum-Native is an implementation of arbitrary-precision decimal arithmetic that is based on JavaScript's new native BigInt type. Chrome's implementation of arbitary-precision integer arithmetic outperforms other big integer libraries, which hopefully makes this library very fast.
BigNum-Native uses the new BigInt
type from ECMAScript 2018 (ES9), so it won't work everywhere quite yet. It is currently working in Chrome 67 and Node.js 10. Other browsers should hopefully be following soon....
Installation
npm install bignum-native
Usage
var BigNum = require('bignum-native');
console.log(new BigNum('1').divide(new BigNum('3')).toString());
// 0.333333333333333333333333333333
API
BigNum(value, [options]) — Construct a BigNum
value
— Astring
ornumber
to be converted to aBigNum
. If omitted,0
will be used.options
— Not used at this time.
let a = new BigNum('3.14')
minus(x) — Returns a new BigNum with the opposite sign as x
.
let a = new BigNum('5')
a.minus() // -5
// or, equivalently:
BigNum.minus(a) // -5
add(x, y) — Returns a new BigNum that is the sum of x
and y
.
let a = new BigNum('50000000000')
let b = new BigNum('0.000000005')
a.add(b) // 50000000000.000000005
// or, equivalently:
BigNum.add(a, b) // 50000000000.000000005
subtract(x, y) — Returns a new BigNum obtained by subtracting y
from x
.
let a = new BigNum('1')
let b = new BigNum('0.0000000000000000001')
a.subtract(b) // 0.9999999999999999999
// or, equivalently:
BigNum.subtract(a, b) // 0.9999999999999999999
multiply(x, y) — Returns a new BigNum obtained by multiplying x
and y
.
let a = new BigNum('0.0000000000000000000025')
let b = new BigNum('400000000000000000000')
a.multiply(b) // 1
// or, equivalently:
BigNum.multiply(a, b) // 1
divide(x, y) — Returns a new BigNum obtained by dividing x
and y
. The number of decimals in the returned result is limited to BigNum.precision
(default: 30).
let a = new BigNum('1')
let b = new BigNum('3')
a.divide(b) // 0.333333333333333333333333333333
// or, equivalently:
BigNum.divide(a, b) // 0.333333333333333333333333333333
BigNum.precision — A configurable parameter which sets the number of digits after the decimal point to keep track of.
let a = new BigNum('1')
let b = new BigNum('3')
BigNum.precision = 60;
a.divide(b) // 0.142857142857142857142857142857142857142857142857142857142857
Testing
Tests are located in the test
directory and use the mocha
framework.
npm test
Contributing
This library is far from perfect, or even complete, so contributions are very welcome! Please submit an issue to report bugs or propose new features, or submit a pull request.
License
BigNum-Native is licensed under the MIT license.
Copyright (c) 2018 Eric Mansfield
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.