Skip to content

Commit

Permalink
fix: Expose "minBy" and "maxBy"
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidmt committed Oct 12, 2020
1 parent 222be85 commit abda097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export { first, first as head } from "./first/first"
export { last, last as tail } from "./last/last"
export { page } from "./page/page"
export { push } from "./push/push"
export { max } from "./max/max"
export { min } from "./min/min"
export { max, maxBy } from "./max/max"
export { min, minBy } from "./min/min"
export { flatten } from "./flatten/flatten"
export { distinct } from "./distinct/distinct"
export { dropLast } from "./drop-last/drop-last"
Expand Down

0 comments on commit abda097

Please sign in to comment.