UNPKG

71 BJavaScriptView Raw
1export function complement(fn){
2 return (...input) => !fn(...input)
3}