From abda097f16408647229be23da1848c0937eb6883 Mon Sep 17 00:00:00 2001 From: Andrei Dumitrescu <5057797+andreidmt@users.noreply.github.com> Date: Mon, 12 Oct 2020 21:31:28 +0200 Subject: [PATCH] fix: Expose "minBy" and "maxBy" --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 05c755e..b7befa5 100644 --- a/src/index.js +++ b/src/index.js @@ -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"