Sign in
chromium
/
devtools
/
devtools-frontend
/
11010e69b4e87fbc1d60cdc0f9ac2b200cd8c75f
/
.
/
node_modules
/
rambda
/
src
/
complement.js
blob: bf1b99dca15503936369b47451483f011eb38329 [
file
]
export
function
complement
(
fn
){
return
(...
input
)
=>
!
fn
(...
input
)
}