Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
complement.js
blob: bf1b99dca15503936369b47451483f011eb38329 [
file
] [
log
] [
blame
] [
edit
]
export
function
complement
(
fn
){
return
(...
input
)
=>
!
fn
(...
input
)
}