blob: bf1b99dca15503936369b47451483f011eb38329 [file]
export function complement(fn){
return (...input) => !fn(...input)
}