Skip to content

Commit 374924f

Browse files
authored
Merge pull request #12 from hckrnews/feature/array-with-object-diff
Update the readme
2 parents ed495c6 + c9ed0c9 commit 374924f

File tree

4 files changed

+43
-11
lines changed

4 files changed

+43
-11
lines changed

.github/FUNDING.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# These are supported funding model platforms
22

3+
github: [w3nl]
34
patreon: w3news
5+
buymeacoffee: https://www.buymeacoffee.com/hckrnews

README.md

+30
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
Array helpers, so you can get very fast your data from the array.
66

7+
## Sponsors :tada:
8+
9+
If it has saved you development time, please consider [sponsoring the project](https://github.com/sponsors/w3nl)
10+
with GitHub sponsors!
11+
12+
But me a coffee/book: https://www.buymeacoffee.com/hckrnews
13+
Or on patreon: patreon.com/w3news
14+
15+
## Example usage
16+
717
here an example array.
818

919
```javascript
@@ -37,6 +47,26 @@ var exampleArray = new Arr([
3747
]);
3848
```
3949

50+
All methods:
51+
52+
* [multisort](#multisort)
53+
* [multifilter](#multifilter)
54+
* [multikey](#multikey)
55+
* [intersect](#intersect)
56+
* [diff](#diff)
57+
* [unique](#unique)
58+
* [pushIfNotExists](#pushIfNotExists)
59+
* [pushMultipleIfNotExists](#pushMultipleIfNotExists)
60+
* [pushMultiple](#pushMultiple)
61+
* [max](#max)
62+
* [min](#min)
63+
* [random](#random)
64+
* [summ](#summ)
65+
* [average](#average)
66+
* [first](#first)
67+
* [last](#last)
68+
* [update](#update)
69+
4070
## multisort
4171

4272
Sort an array with objects by the key of the object.

package-lock.json

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hckrnews/arrays",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "Usefull array helpers.",
55
"files": [
66
"src/helpers.js",

0 commit comments

Comments
 (0)