Sign in
◑
Theme
chromium
/
devtools
/
devtools-frontend
/
11010e69b4e87fbc1d60cdc0f9ac2b200cd8c75f
/
.
/
node_modules
/
rambda
/
src
/
both.js
blob: b78269cf0a13973591f056da685952632c0465d6 [
file
]
export
function
both
(
f
,
g
){
if
(
arguments
.
length
===
1
)
return
_g
=>
both
(
f
,
_g
)
return
(...
input
)
=>
f
(...
input
)
&&
g
(...
input
)
}