Skip to content

Commit

Permalink
RELEASING: Releasing 1 package(s)
Browse files Browse the repository at this point in the history
Releases:
  [email protected]

[skip ci]
  • Loading branch information
joelgnansounou committed Sep 7, 2024
1 parent 76ba44c commit 35e8fa0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/mighty-beers-think.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# bignumber-arr-utils

## 0.1.0

### Minor Changes

- 76ba44c: Add min, max and includes functons

## 0.0.1

### Patch Changes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ console.log(arr.max().toString()); // "3e18"
The includes method checks if a specific BigNumber value is present in the array. It returns true if the value is found, and false otherwise.

- **Parameters:**

- `n` - The value to check for in the array.

- **Returns:**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bignumber-arr-utils",
"version": "0.0.1",
"version": "0.1.0",
"description": "A lightweight utility library designed for efficient manipulation and calculation of large numbers within arrays",
"main": "dist/index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/bignumber-arr-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class BigNumberArrUtils implements IArrayUtils<BigNumber> {
* Returns the minimum of all BigNumber instances in the array.
*
* @throws {Error} If the array is empty.
*
*
* ```ts
* const arr = new BigNumberArrUtils(-0.8, 3e+18, 1.0000000000000001);
* console.log(arr.min().toString()); // "-0.8"
Expand All @@ -132,7 +132,7 @@ export class BigNumberArrUtils implements IArrayUtils<BigNumber> {

/**
* Returns the maximum of all BigNumber instances in the array.
*
*
* @throws {Error} If the array is empty.
*
* ```ts
Expand Down

0 comments on commit 35e8fa0

Please sign in to comment.