@exante/big-decimal
v1.0.3
Published
Utility functions to convert numbers to and from big decimal objects.
Downloads
14
Readme
BigDecimal number converter
A very small set of utility functions to convert numbers in Big Decimal format to JavaScript numbers and back.
Install
npm install --save @exante/big-decimal
Usage
import { toBigDec, fromBigDec } from '@exante/big-decimal';
fromBigDec({ scale: 2, value: 12345 }); // -> 123.45
toBigDec(123.45); // -> { scale: 2, value: 12345 }
Features
- Robust: The library is tested to behave correctly with all kinds of input. It correctly handles all JavaScript quirks when dealing with numbers and accounts for strings, scientific notation, leading and trailing zeros and invalid input.
- Lightweight: 800 bytes minified
NOTE: Does not provide BigDecimal arithmetic
This library is intended to be as lightweight as possible. Therefore it only provides helpers to convert numbers to and from BigDecimal format. It does not provide utilities for BigDecimal arithmetic. If you need precision arithmetic in JavaScript, take a look at big.js or bignumber.js