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