Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
partialObject.js
blob: 15dd9b6d758e9b4c0a9ad8ba8d9016249dde15d5 [
file
] [
log
] [
blame
] [
edit
]
import
{
mergeDeepRight
}
from
'./mergeDeepRight.js'
export
function
partialObject
(
fn
,
input
){
return
nextInput
=>
fn
(
mergeDeepRight
(
nextInput
,
input
))
}