Sign in
chromium
/
devtools
/
devtools-frontend
/
d5a3755f19aa248cffbcf61f1628362aaa6c0377
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_complement.js
blob: d4206fc4a40aa03865f520e9ebd1956b1424b72d [
file
] [
log
] [
blame
]
function
_complement
(
f
)
{
return
function
()
{
return
!
f
.
apply
(
this
,
arguments
);
};
}
module
.
exports
=
_complement
;