diff --git a/README.md b/README.md index 8428681..ba73ae7 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ dnum: small library for big decimal numbers -

npm version bundle size License

+

npm version bundle size License

-dnum provides a [concise](https://bundlephobia.com/package/dnum@latest) set of utilities designed for the manipulation of large numbers. It provides useful features for everyday apps, such as formatting and math functions. Numbers are represented as a pair composed of a value ([`BigInt`](https://developer.mozilla.org/en-US/docs/Glossary/BigInt)) and a decimal precision. This structure makes it possible maintain precision while offering a great flexibility compared to other approaches. +dnum provides a [concise](https://bundlejs.com/?q=dnum) set of utilities designed for the manipulation of large numbers. It provides useful features for everyday apps, such as formatting and math functions. Numbers are represented as a pair composed of a value ([`BigInt`](https://developer.mozilla.org/en-US/docs/Glossary/BigInt)) and a decimal precision. This structure makes it possible maintain precision while offering a great flexibility compared to other approaches. ```ts type Dnum = [value: bigint, decimals: number];