Skip to content

Commit

Permalink
Added array/search
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpicyMeatball committed Nov 17, 2021
1 parent 07e979e commit ed02c02
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.14.0] - 2021-11-17
- Added array/search

## [1.13.1] - 2021-11-09
- Added splitCamelCase to kebab to ensure a camel cased string can be kebab cased

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import { isNilOrEmpty, take } from '@paravano/utils';
```

<p><b>Version:</b> 1.13.1</p>
<p><b>Version:</b> 1.14.0</p>

> Click on each function name for details and examples
Expand Down
3 changes: 3 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.14.0] - 2021-11-17
- Added array/search

## [1.13.1] - 2021-11-09
- Added splitCamelCase to kebab to ensure a camel cased string can be kebab cased

Expand Down
2 changes: 1 addition & 1 deletion dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import { isNilOrEmpty, take } from '@paravano/utils';
```

<p><b>Version:</b> 1.13.1</p>
<p><b>Version:</b> 1.14.0</p>

> Click on each function name for details and examples
Expand Down
2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@paravano/utils",
"version": "1.13.1",
"version": "1.14.0",
"description": "A set of JavaScript utils",
"main": "lib/es5/index.js",
"module": "lib/es6/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/array/search/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h2>search</h2>
<p>Searches an array of objects and returns the items that match the search</p>
<p>Since v0.0.1</p>
<p>Since v1.14.0</p>
<table>
<thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion src/array/search/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { isNilOrEmpty } from '../../value/isNilOrEmpty';
/**
* Searches an array of objects and returns the items that match the search
*
* @since v0.0.1
* @since v1.14.0
* @category Array
* @template {T} - The type of the array
* @param {T[]} array - The array of items
Expand Down

0 comments on commit ed02c02

Please sign in to comment.