Skip to content

Commit

Permalink
🏷️ Fix TS type
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumolari committed Apr 26, 2019
1 parent e948891 commit f3b0b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hasTruthyValues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function hasTruthyValues<Collection extends object> (collection: Collection): bo
return shortcuttedReduce(
collection,
(accum, value) => accum || !!value,
false
false as boolean
)
}

Expand Down

0 comments on commit f3b0b97

Please sign in to comment.