Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
objOf.js
blob: 050ad5306e8192c2d9963fee5a77bf31d77eaf78 [
file
] [
log
] [
blame
] [
edit
]
export
function
objOf
(
key
,
value
){
if
(
arguments
.
length
===
1
){
return
_value
=>
objOf
(
key
,
_value
)
}
return
{
[
key
]
:
value
}
}