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