From b0acbe794af3dd4d576107847ba44c97af6cab91 Mon Sep 17 00:00:00 2001 From: Pierre Bertet Date: Sun, 20 Nov 2022 18:45:59 +0000 Subject: [PATCH] README tweaks --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e26b55..4681564 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

npm version bundle size License

-dnum provides a small set of utilities to manipulate large numbers represented as a pair composed of a value (stored as a [`BigInt`](https://developer.mozilla.org/en-US/docs/Glossary/BigInt)) and corresponding decimals. This structure makes it possible to handle large decimal numbers in an easy manner, without any loss of precision, and using an open structure that preserves flexibility. +dnum provides a [small](https://bundlephobia.com/package/dnum@latest) set of utilities to manipulate large numbers represented as a pair composed of a value (stored as a [`BigInt`](https://developer.mozilla.org/en-US/docs/Glossary/BigInt)) and corresponding decimals. This structure makes it possible to handle large decimal numbers in an easy manner, without any loss of precision, and using an open structure that preserves flexibility. ```ts type Dnum = [value: bigint, decimals: number];