Returns a predicate function that negates the return value of fn. Same as !fn(x).
fn
!fn(x)
isEven(3)// => falsenot(isEven)(3)// => true Copy
isEven(3)// => falsenot(isEven)(3)// => true
Generated using TypeDoc
Returns a predicate function that negates the return value of
fn
. Same as!fn(x)
.