Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
assoc.js
blob: ec095dcbfb3de59b2bed6b939d35c7741647195f [
file
] [
log
] [
blame
] [
edit
]
import
{
curry
}
from
'./curry.js'
function
assocFn
(
prop
,
newValue
,
obj
){
return
Object
.
assign
(
{},
obj
,
{
[
prop
]
:
newValue
}
)
}
export
const
assoc
=
curry
(
assocFn
)