Skip to content

Commit

Permalink
Merge branch 'hotfix/4.0.25'
Browse files Browse the repository at this point in the history
  • Loading branch information
ecrmnn committed Aug 6, 2018
2 parents 293f969 + 0c1b7bf commit 11ca7a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.d.ts
Expand Up @@ -102,7 +102,8 @@ declare module 'collect.js' {
* The filter method filters the collection using the given callback,
* keeping only those items that pass a given truth test.
*/
filter(fn: (item: Item) => boolean): Collection<Item>;
filter(fn: (item: Item) => boolean): Collection<Item>;
filter(fn: (item: Item, key?: any) => boolean): Collection<Item>;

/**
* The first method returns the first element in the collection that passes a given truth test.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "collect.js",
"version": "4.0.24",
"version": "4.0.25",
"description": "Convenient and dependency free wrapper for working with arrays and objects.",
"main": "dist/index.js",
"typings": "index.d.ts",
Expand Down

0 comments on commit 11ca7a9

Please sign in to comment.