Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
maxBy.js
blob: 305988fd0e8e956ad25079ed9a120ddd804da762 [
file
]
import
{
curry
}
from
'./curry.js'
export
function
maxByFn
(
compareFn
,
x
,
y
){
return
compareFn
(
y
)
>
compareFn
(
x
)
?
y
:
x
}
export
const
maxBy
=
curry
(
maxByFn
)