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