Sign in
chromium
/
devtools
/
devtools-frontend
/
520a367908afd35a1031ef9edb9058596ebccdbf
/
.
/
node_modules
/
rambda
/
src
/
partialObject.js
blob: 15dd9b6d758e9b4c0a9ad8ba8d9016249dde15d5 [
file
]
import
{
mergeDeepRight
}
from
'./mergeDeepRight.js'
export
function
partialObject
(
fn
,
input
){
return
nextInput
=>
fn
(
mergeDeepRight
(
nextInput
,
input
))
}