Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinadam committed Aug 3, 2024
1 parent 489f3ad commit b516fad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Decimal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -497,4 +497,4 @@ Deno.test('lte0', () => {
for (const { input, output } of vectors) {
assert(input.lte0() === output);
}
});
});
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
[![JSR](https://jsr.io/badges/@quentinadam/decimal)](https://jsr.io/@quentinadam/decimal)
[![CI](https://github.com/quentinadam/deno-decimal/actions/workflows/ci.yml/badge.svg)](https://github.com/quentinadam/deno-decimal/actions/workflows/ci.yml)

A library for working with arbitrary precision decimal numbers. Numbers are represented by a mantissa (bigint) and an exponent (number). Division may fail if the resulting number is cannot be represented with a fixed number of decimals (like 1/3).
A library for working with arbitrary precision decimal numbers. Numbers are represented by a mantissa (bigint) and an
exponent (number). Division may fail if the resulting number cannot be represented with a fixed number of decimals (like
1/3).

## Usage

Expand Down

0 comments on commit b516fad

Please sign in to comment.