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