Sign in
◑
Theme
chromium
/
devtools
/
devtools-frontend
/
97f7c4e83c738e81ffffa69dfc44e38780bcbbfa
/
.
/
node_modules
/
rambda
/
src
/
and.js
blob: ab4040927ee4dabdb87cd3506aa74e7da12ddef6 [
file
]
export
function
and
(
a
,
b
){
if
(
arguments
.
length
===
1
)
return
_b
=>
and
(
a
,
_b
)
return
a
&&
b
}