Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
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
}