Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidmartinez10/bigfloat-esnext
A library for arbitrary precision decimal floating point arithmetic.
https://github.com/davidmartinez10/bigfloat-esnext
arbitrary-precision arithmetic bigdecimal bigfloat bigfloat-esnext bigint bignumber business cryptocurrency decimal floating-point math mathematics nodejs physics precision typescript
Last synced: about 1 month ago
JSON representation
A library for arbitrary precision decimal floating point arithmetic.
- Host: GitHub
- URL: https://github.com/davidmartinez10/bigfloat-esnext
- Owner: davidmartinez10
- License: mit
- Created: 2019-10-16T09:39:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-16T17:58:33.000Z (about 2 years ago)
- Last Synced: 2024-04-24T14:19:51.799Z (9 months ago)
- Topics: arbitrary-precision, arithmetic, bigdecimal, bigfloat, bigfloat-esnext, bigint, bignumber, business, cryptocurrency, decimal, floating-point, math, mathematics, nodejs, physics, precision, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/bigfloat-esnext
- Size: 126 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![BigFloat](https://raw.githubusercontent.com/davidmartinez10/bigfloat-esnext/master/bigfloat.jpg)](https://github.com/davidmartinez10/bigfloat-esnext)
A library for arbitrary precision decimal floating point arithmetic that can exactly represent all decimal fractions,
unlike JavaScript's number data type which is 64-bit binary floating point.Based on the original work by Douglas Crockford.
This implementation is built upon ES native bigints.This library provides three ways to make bigfloat operations:
- A set of functions for a functional style approach
- A BigFloat class with an API similar to that of Decimal.js
- An evaluate() function that parses and resolves an expression# Basic usage
### Functional style
```typescript
import { make, string, sqrt } from "bigfloat-esnext";string(sqrt(make("2"))); // "1.4142"
```### Class based
```typescript
import { BigFloat } from "bigfloat-esnext";new BigFloat("2").sqrt().toString(); // "1.4142"
```### The evaluate() function
```typescript
evaluate(expression: string, precision?: number): string | boolean
```
>The first argument can be any valid arithmetic or relational expression, including scientific e-notation.
>Precision should be a negative integer. Default is -4.
```typescript
import { evaluate } from "bigfloat-esnext";0.1 + 0.2 === 0.3; // false
evaluate("0.1 + 0.2 == 0.3"); // true0.1 + 0.2; // 0.30000000000000004
evaluate("0.1 + 0.2"); // "0.3"1 + Number.EPSILON / 2; // 1
evaluate(`1 + ${Number.EPSILON / 2}`); // "1.00000000000000011102230246251565"evaluate("1 + 2.220446049250313e-16"); // "1.0000000000000002220446049250313"
evaluate(`4 >= ${Math.PI}`); // true
```Valid tokens:
- Parenthesis: (,)
- Number: Decimal, integer or scientific e-notation
- Operator: Arithmetic +,-,/,\*,\*\* Relational =\=\=,=\=,!==,!=,<,>,<=,>=
### Change precision
```typescript
import { BigFloat, set_precision } from "bigfloat-esnext";new BigFloat(2).sqrt().toString(); // "1.4142"
set_precision(-10);
new BigFloat(2).sqrt().toString(); // "1.4142135623"
```
### The bigfloat object
```typescript
interface IBigFloat {
coefficient: bigint;
exponent: number;
}
```
Valid bigfloat made from primitives:
```typescript
const bigfloat: IBigFloat {
coefficient: 522299n,
exponent: -4
};
```